Skip to content
Closed
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,3 +1,3 @@
configured_endpoints: 239
openapi_spec_hash: 85e424bee4fe449466ceada88117613e
openapi_spec_hash: f3f27992aea4b9bb24604978dc64f9f6
config_hash: 1ca082e374ef7000e2a5971e8da740e0
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/increase/types/inbound_fednow_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ class InboundFednowTransfer(BaseModel):
decline: Optional[Decline] = None
"""If your transfer is declined, this will contain details of the decline."""

end_to_end_identification: Optional[str] = None
"""A free-form reference string set by the sender, to help identify the transfer."""

status: Literal["pending_confirming", "timed_out", "confirmed", "declined", "requires_attention"]
"""The lifecycle status of the transfer.

Expand All @@ -134,6 +137,9 @@ class InboundFednowTransfer(BaseModel):
confirmed.
"""

transaction_identification: Optional[str] = None
"""The FedNow network identification of the transfer."""

type: Literal["inbound_fednow_transfer"]
"""A constant representing the object's type.

Expand Down
Loading