Class: Stripe::TestHelpers::Treasury::ReceivedDebitService::CreateParams::NetworkDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::Treasury::ReceivedDebitService::CreateParams::NetworkDetails
- Defined in:
- lib/stripe/services/test_helpers/treasury/received_debit_service.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.
49 50 51 52 |
# File 'lib/stripe/services/test_helpers/treasury/received_debit_service.rb', line 49 def initialize(ach: nil, type: nil) @ach = ach @type = type end |
Instance Attribute Details
#ach ⇒ Object
Optional fields for ‘ach`.
45 46 47 |
# File 'lib/stripe/services/test_helpers/treasury/received_debit_service.rb', line 45 def ach @ach end |
#type ⇒ Object
The type of flow that originated the ReceivedDebit.
47 48 49 |
# File 'lib/stripe/services/test_helpers/treasury/received_debit_service.rb', line 47 def type @type end |