Class: Stripe::PaymentIntentCreateParams::PaymentDetails::MoneyServices

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

Defined Under Namespace

Classes: AccountFunding

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, transaction_type: nil) ⇒ MoneyServices

Returns a new instance of MoneyServices.



2122
2123
2124
2125
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2122

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

Instance Attribute Details

#account_fundingObject

Account funding transaction details including sender and beneficiary information.



2118
2119
2120
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2118

def 
  @account_funding
end

#transaction_typeObject

The type of money services transaction.



2120
2121
2122
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2120

def transaction_type
  @transaction_type
end