Class: Stripe::Treasury::OutboundPayment::ReturnOutboundPaymentParams

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

Returns a new instance of ReturnOutboundPaymentParams.



456
457
458
459
# File 'lib/stripe/resources/treasury/outbound_payment.rb', line 456

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.



452
453
454
# File 'lib/stripe/resources/treasury/outbound_payment.rb', line 452

def expand
  @expand
end

#returned_detailsObject

Optional hash to set the return code.



454
455
456
# File 'lib/stripe/resources/treasury/outbound_payment.rb', line 454

def returned_details
  @returned_details
end