Class: Stripe::Treasury::OutboundTransfer::CreateParams::NetworkDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/treasury/outbound_transfer.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.



205
206
207
208
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 205

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

Instance Attribute Details

#achObject

Optional fields for ‘ach`.



201
202
203
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 201

def ach
  @ach
end

#typeObject

The type of flow that originated the OutboundTransfer.



203
204
205
# File 'lib/stripe/resources/treasury/outbound_transfer.rb', line 203

def type
  @type
end