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.
205 206 207 208 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 205 def initialize(ach: nil, type: nil) @ach = ach @type = type end |
Instance Attribute Details
#ach ⇒ Object
Optional fields for ‘ach`.
201 202 203 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 201 def ach @ach end |
#type ⇒ Object
The type of flow that originated the OutboundTransfer.
203 204 205 |
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 203 def type @type end |