Class: Stripe::Treasury::ReceivedCredit::CreateParams::NetworkDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Treasury::ReceivedCredit::CreateParams::NetworkDetails
- Defined in:
- lib/stripe/resources/treasury/received_credit.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 ReceivedCredit.
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.
250 251 252 253 |
# File 'lib/stripe/resources/treasury/received_credit.rb', line 250 def initialize(ach: nil, type: nil) @ach = ach @type = type end |
Instance Attribute Details
#ach ⇒ Object
Optional fields for ‘ach`.
245 246 247 |
# File 'lib/stripe/resources/treasury/received_credit.rb', line 245 def ach @ach end |
#type ⇒ Object
The type of flow that originated the ReceivedCredit.
248 249 250 |
# File 'lib/stripe/resources/treasury/received_credit.rb', line 248 def type @type end |