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.



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

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

Instance Attribute Details

#achObject

Optional fields for ‘ach`.



71
72
73
# File 'lib/stripe/services/treasury/outbound_transfer_service.rb', line 71

def ach
  @ach
end

#typeObject

The type of flow that originated the OutboundTransfer.



74
75
76
# File 'lib/stripe/services/treasury/outbound_transfer_service.rb', line 74

def type
  @type
end