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.



173
174
175
176
# File 'lib/stripe/resources/treasury/received_debit.rb', line 173

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

Instance Attribute Details

#achObject

Optional fields for ‘ach`.



169
170
171
# File 'lib/stripe/resources/treasury/received_debit.rb', line 169

def ach
  @ach
end

#typeObject

The type of flow that originated the ReceivedDebit.



171
172
173
# File 'lib/stripe/resources/treasury/received_debit.rb', line 171

def type
  @type
end