Class: Stripe::Treasury::OutboundPaymentUpdateParams::TrackingDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::OutboundPaymentUpdateParams::TrackingDetails
- Defined in:
- lib/stripe/params/treasury/outbound_payment_update_params.rb
Defined Under Namespace
Classes: Ach, UsDomesticWire
Instance Attribute Summary collapse
-
#ach ⇒ Object
ACH network tracking details.
-
#type ⇒ Object
The US bank account network used to send funds.
-
#us_domestic_wire ⇒ Object
US domestic wire network tracking details.
Instance Method Summary collapse
-
#initialize(ach: nil, type: nil, us_domestic_wire: nil) ⇒ TrackingDetails
constructor
A new instance of TrackingDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(ach: nil, type: nil, us_domestic_wire: nil) ⇒ TrackingDetails
Returns a new instance of TrackingDetails.
38 39 40 41 42 |
# File 'lib/stripe/params/treasury/outbound_payment_update_params.rb', line 38 def initialize(ach: nil, type: nil, us_domestic_wire: nil) @ach = ach @type = type @us_domestic_wire = us_domestic_wire end |
Instance Attribute Details
#ach ⇒ Object
ACH network tracking details.
32 33 34 |
# File 'lib/stripe/params/treasury/outbound_payment_update_params.rb', line 32 def ach @ach end |
#type ⇒ Object
The US bank account network used to send funds.
34 35 36 |
# File 'lib/stripe/params/treasury/outbound_payment_update_params.rb', line 34 def type @type end |
#us_domestic_wire ⇒ Object
US domestic wire network tracking details.
36 37 38 |
# File 'lib/stripe/params/treasury/outbound_payment_update_params.rb', line 36 def us_domestic_wire @us_domestic_wire end |