Class: Stripe::TestHelpers::Treasury::OutboundTransferReturnOutboundTransferParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb

Defined Under Namespace

Classes: ReturnedDetails

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, returned_details: nil) ⇒ OutboundTransferReturnOutboundTransferParams

Returns a new instance of OutboundTransferReturnOutboundTransferParams.



21
22
23
24
# File 'lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb', line 21

def initialize(expand: nil, returned_details: nil)
  @expand = expand
  @returned_details = returned_details
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



17
18
19
# File 'lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb', line 17

def expand
  @expand
end

#returned_detailsObject

Details about a returned OutboundTransfer.



19
20
21
# File 'lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb', line 19

def returned_details
  @returned_details
end