Class: Stripe::Treasury::OutboundTransfer::CreateParams::NetworkDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::OutboundTransfer::CreateParams::NetworkDetails
- Defined in:
- lib/stripe/resources/treasury/outbound_transfer.rb
Defined Under Namespace
Classes: Ach
Instance Attribute Summary collapse
-
#ach ⇒ Object
Optional fields for ‘ach`.
-
#type ⇒ Object
The type of flow that originated the OutboundTransfer.
Instance Method Summary collapse
-
#initialize(ach: nil, type: nil) ⇒ NetworkDetails
constructor
A new instance of NetworkDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(ach: nil, type: nil) ⇒ NetworkDetails
Returns a new instance of NetworkDetails.
305 306 307 308 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 305 def initialize(ach: nil, type: nil) @ach = ach @type = type end |
Instance Attribute Details
#ach ⇒ Object
Optional fields for ‘ach`.
301 302 303 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 301 def ach @ach end |
#type ⇒ Object
The type of flow that originated the OutboundTransfer.
303 304 305 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 303 def type @type end |