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 .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 198
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fdde1c1969aa40ee9126d1226d49c3ff136a38351d9156c31c4216481f29f9e7.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5f978bae16d83f22066955b0be61bb670f595ee28dc5d6b52adf66a1ed86b3b5.yml
16 changes: 0 additions & 16 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"SourceRealTimePaymentsTransferAcknowledgement",
"SourceSampleFunds",
"SourceWireTransferIntention",
"SourceWireTransferRejection",
]


Expand Down Expand Up @@ -2178,11 +2177,6 @@ class SourceWireTransferIntention(BaseModel):
"""The identifier of the Wire Transfer that led to this Transaction."""


class SourceWireTransferRejection(BaseModel):
transfer_id: str
"""The identifier of the Wire Transfer that led to this Transaction."""


class Source(BaseModel):
account_transfer_intention: Optional[SourceAccountTransferIntention] = None
"""An Account Transfer Intention object.
Expand Down Expand Up @@ -2282,7 +2276,6 @@ class Source(BaseModel):
"real_time_payments_transfer_acknowledgement",
"sample_funds",
"wire_transfer_intention",
"wire_transfer_rejection",
"other",
]
"""The type of the resource.
Expand Down Expand Up @@ -2347,8 +2340,6 @@ class Source(BaseModel):
object.
- `wire_transfer_intention` - Wire Transfer Intention: details will be under the
`wire_transfer_intention` object.
- `wire_transfer_rejection` - Wire Transfer Rejection: details will be under the
`wire_transfer_rejection` object.
- `other` - The Transaction was made for an undocumented or deprecated reason.
"""

Expand Down Expand Up @@ -2456,13 +2447,6 @@ class Source(BaseModel):
equal to `wire_transfer_intention`.
"""

wire_transfer_rejection: Optional[SourceWireTransferRejection] = None
"""A Wire Transfer Rejection object.

This field will be present in the JSON response if and only if `category` is
equal to `wire_transfer_rejection`.
"""


class Transaction(BaseModel):
id: str
Expand Down
1 change: 0 additions & 1 deletion src/increase/types/transaction_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class TransactionListParams(TypedDict, total=False):
"real_time_payments_transfer_acknowledgement",
"sample_funds",
"wire_transfer_intention",
"wire_transfer_rejection",
"other",
]
],
Expand Down