Class: Stripe::Treasury::OutboundTransferService::CreateParams::NetworkDetails

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



82
83
84
85
# File 'lib/stripe/services/treasury/outbound_transfer_service.rb', line 82

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

Instance Attribute Details

#achObject

Optional fields for ‘ach`.



78
79
80
# File 'lib/stripe/services/treasury/outbound_transfer_service.rb', line 78

def ach
  @ach
end

#typeObject

The type of flow that originated the OutboundTransfer.



80
81
82
# File 'lib/stripe/services/treasury/outbound_transfer_service.rb', line 80

def type
  @type
end