Skip to content

Commit f9d83dd

Browse files
committed
feat(api): remove card_settlement_transaction_id
1 parent c91d972 commit f9d83dd

File tree

6 files changed

+1
-15
lines changed

6 files changed

+1
-15
lines changed

src/increase/types/check_deposit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ class DepositRejection(BaseModel):
6565
"incorrect_amount",
6666
"incorrect_recipient",
6767
"not_eligible_for_mobile_deposit",
68+
"missing_required_data_elements",
6869
"unknown",
6970
]
7071
"""Why the check deposit was rejected."""

src/increase/types/simulations/ach_transfer_simulation.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,6 @@ class TransactionSourceCardRefund(BaseModel):
196196
For dollars, for example, this is cents.
197197
"""
198198

199-
card_settlement_transaction_id: Optional[str]
200-
"""The identifier for the Transaction this refunds, if any."""
201-
202199
currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"]
203200
"""
204201
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the

src/increase/types/simulations/inbound_real_time_payments_transfer_simulation_result.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,6 @@ class TransactionSourceCardRefund(BaseModel):
196196
For dollars, for example, this is cents.
197197
"""
198198

199-
card_settlement_transaction_id: Optional[str]
200-
"""The identifier for the Transaction this refunds, if any."""
201-
202199
currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"]
203200
"""
204201
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the

src/increase/types/simulations/interest_payment_simulation_result.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,6 @@ class TransactionSourceCardRefund(BaseModel):
185185
For dollars, for example, this is cents.
186186
"""
187187

188-
card_settlement_transaction_id: Optional[str]
189-
"""The identifier for the Transaction this refunds, if any."""
190-
191188
currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"]
192189
"""
193190
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the

src/increase/types/simulations/wire_transfer_simulation.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,6 @@ class TransactionSourceCardRefund(BaseModel):
185185
For dollars, for example, this is cents.
186186
"""
187187

188-
card_settlement_transaction_id: Optional[str]
189-
"""The identifier for the Transaction this refunds, if any."""
190-
191188
currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"]
192189
"""
193190
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the

src/increase/types/transaction.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,6 @@ class SourceCardRefund(BaseModel):
184184
For dollars, for example, this is cents.
185185
"""
186186

187-
card_settlement_transaction_id: Optional[str]
188-
"""The identifier for the Transaction this refunds, if any."""
189-
190187
currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"]
191188
"""
192189
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the

0 commit comments

Comments
 (0)