Class: Stripe::Treasury::ReceivedDebit::CreateParams::NetworkDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/treasury/received_debit.rb

Defined Under Namespace

Classes: Ach

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(ach: nil, type: nil) ⇒ NetworkDetails

Returns a new instance of NetworkDetails.



213
214
215
216
# File 'lib/stripe/resources/treasury/received_debit.rb', line 213

def initialize(ach: nil, type: nil)
  @ach = ach
  @type = type
end

Instance Attribute Details

#achObject

Optional fields for ‘ach`.



208
209
210
# File 'lib/stripe/resources/treasury/received_debit.rb', line 208

def ach
  @ach
end

#typeObject

The type of flow that originated the ReceivedDebit.



211
212
213
# File 'lib/stripe/resources/treasury/received_debit.rb', line 211

def type
  @type
end