1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._request_options import RequestOptions
from typing import List
from typing_extensions import Literal, NotRequired, TypedDict
class OutboundTransferUpdateParams(RequestOptions):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
tracking_details: "OutboundTransferUpdateParamsTrackingDetails"
"""
Details about network-specific tracking information.
"""
class OutboundTransferUpdateParamsTrackingDetails(TypedDict):
ach: NotRequired["OutboundTransferUpdateParamsTrackingDetailsAch"]
"""
ACH network tracking details.
"""
type: Literal["ach", "us_domestic_wire"]
"""
The US bank account network used to send funds.
"""
us_domestic_wire: NotRequired[
"OutboundTransferUpdateParamsTrackingDetailsUsDomesticWire"
]
"""
US domestic wire network tracking details.
"""
class OutboundTransferUpdateParamsTrackingDetailsAch(TypedDict):
trace_id: str
"""
ACH trace ID for funds sent over the `ach` network.
"""
class OutboundTransferUpdateParamsTrackingDetailsUsDomesticWire(TypedDict):
chips: NotRequired[str]
"""
CHIPS System Sequence Number (SSN) for funds sent over the `us_domestic_wire` network.
"""
imad: NotRequired[str]
"""
IMAD for funds sent over the `us_domestic_wire` network.
"""
omad: NotRequired[str]
"""
OMAD for funds sent over the `us_domestic_wire` network.
"""
|