Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class PhysicalCheck(BaseModel):
note: Optional[str]
"""The descriptor that will be printed on the letter included with the check."""

recipient_name: Optional[str]
recipient_name: str
"""The name that will be printed on the check."""

return_address: Optional[PhysicalCheckReturnAddress]
Expand Down
2 changes: 2 additions & 0 deletions src/increase/types/declined_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class SourceACHDecline(BaseModel):
"group_locked",
"insufficient_funds",
"misrouted_return",
"return_of_erroneous_or_reversing_debit",
"no_ach_route",
"originator_request",
"transaction_not_allowed",
Expand All @@ -61,6 +62,7 @@ class SourceACHDecline(BaseModel):
- `group_locked` - Your account is inactive.
- `insufficient_funds` - Your account contains insufficient funds.
- `misrouted_return` - Other.
- `return_of_erroneous_or_reversing_debit` - Other.
- `no_ach_route` - The account number that was debited does not exist.
- `originator_request` - Other.
- `transaction_not_allowed` - The transaction is not allowed per Increase's
Expand Down
5 changes: 5 additions & 0 deletions src/increase/types/simulations/ach_transfer_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
"group_locked",
"insufficient_funds",
"misrouted_return",
"return_of_erroneous_or_reversing_debit",
"no_ach_route",
"originator_request",
"transaction_not_allowed",
Expand All @@ -93,6 +94,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
- `group_locked` - Your account is inactive.
- `insufficient_funds` - Your account contains insufficient funds.
- `misrouted_return` - Other.
- `return_of_erroneous_or_reversing_debit` - Other.
- `no_ach_route` - The account number that was debited does not exist.
- `originator_request` - Other.
- `transaction_not_allowed` - The transaction is not allowed per Increase's
Expand Down Expand Up @@ -1344,6 +1346,9 @@ class TransactionSourceFeePayment(BaseModel):
- `USD` - US Dollar (USD)
"""

fee_period_start: date
"""The start of this payment's fee period, usually the first day of a month."""


class TransactionSourceInboundACHTransfer(BaseModel):
amount: int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
"group_locked",
"insufficient_funds",
"misrouted_return",
"return_of_erroneous_or_reversing_debit",
"no_ach_route",
"originator_request",
"transaction_not_allowed",
Expand All @@ -74,6 +75,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
- `group_locked` - Your account is inactive.
- `insufficient_funds` - Your account contains insufficient funds.
- `misrouted_return` - Other.
- `return_of_erroneous_or_reversing_debit` - Other.
- `no_ach_route` - The account number that was debited does not exist.
- `originator_request` - Other.
- `transaction_not_allowed` - The transaction is not allowed per Increase's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
"group_locked",
"insufficient_funds",
"misrouted_return",
"return_of_erroneous_or_reversing_debit",
"no_ach_route",
"originator_request",
"transaction_not_allowed",
Expand All @@ -93,6 +94,7 @@ class DeclinedTransactionSourceACHDecline(BaseModel):
- `group_locked` - Your account is inactive.
- `insufficient_funds` - Your account contains insufficient funds.
- `misrouted_return` - Other.
- `return_of_erroneous_or_reversing_debit` - Other.
- `no_ach_route` - The account number that was debited does not exist.
- `originator_request` - Other.
- `transaction_not_allowed` - The transaction is not allowed per Increase's
Expand Down Expand Up @@ -1344,6 +1346,9 @@ class TransactionSourceFeePayment(BaseModel):
- `USD` - US Dollar (USD)
"""

fee_period_start: date
"""The start of this payment's fee period, usually the first day of a month."""


class TransactionSourceInboundACHTransfer(BaseModel):
amount: int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,9 @@ class TransactionSourceFeePayment(BaseModel):
- `USD` - US Dollar (USD)
"""

fee_period_start: date
"""The start of this payment's fee period, usually the first day of a month."""


class TransactionSourceInboundACHTransfer(BaseModel):
amount: int
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/simulations/wire_transfer_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,9 @@ class TransactionSourceFeePayment(BaseModel):
- `USD` - US Dollar (USD)
"""

fee_period_start: date
"""The start of this payment's fee period, usually the first day of a month."""


class TransactionSourceInboundACHTransfer(BaseModel):
amount: int
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,9 @@ class SourceFeePayment(BaseModel):
- `USD` - US Dollar (USD)
"""

fee_period_start: date
"""The start of this payment's fee period, usually the first day of a month."""


class SourceInboundACHTransfer(BaseModel):
amount: int
Expand Down