Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::MoneyServices

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_update_params.rb

Defined Under Namespace

Classes: AccountFunding, BeneficiaryDetails

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(account_funding: nil, beneficiary_details: nil, transaction_type: nil) ⇒ MoneyServices

Returns a new instance of MoneyServices.



2170
2171
2172
2173
2174
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2170

def initialize(account_funding: nil, beneficiary_details: nil, transaction_type: nil)
  @account_funding = 
  @beneficiary_details = beneficiary_details
  @transaction_type = transaction_type
end

Instance Attribute Details

#account_fundingObject

Account funding transaction details including sender information.



2164
2165
2166
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2164

def 
  @account_funding
end

#beneficiary_detailsObject

Inline identity details for the beneficiary of this transaction.



2166
2167
2168
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2166

def beneficiary_details
  @beneficiary_details
end

#transaction_typeObject

The type of money services transaction.



2168
2169
2170
# File 'lib/stripe/params/payment_intent_update_params.rb', line 2168

def transaction_type
  @transaction_type
end