Class: Stripe::Treasury::ReceivedDebit::CreateParams::NetworkDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::ReceivedDebit::CreateParams::NetworkDetails
- Defined in:
- lib/stripe/resources/treasury/received_debit.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 ReceivedDebit.
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.
182 183 184 185 |
# File 'lib/stripe/resources/treasury/received_debit.rb', line 182 def initialize(ach: nil, type: nil) @ach = ach @type = type end |
Instance Attribute Details
#ach ⇒ Object
Optional fields for ‘ach`.
178 179 180 |
# File 'lib/stripe/resources/treasury/received_debit.rb', line 178 def ach @ach end |
#type ⇒ Object
The type of flow that originated the ReceivedDebit.
180 181 182 |
# File 'lib/stripe/resources/treasury/received_debit.rb', line 180 def type @type end |