Class: Stripe::PaymentIntentCreateParams::PaymentMethodData::StripeBalance

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(account: nil, source_type: nil) ⇒ StripeBalance

Returns a new instance of StripeBalance.



2271
2272
2273
2274
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2271

def initialize(account: nil, source_type: nil)
  @account = 
  @source_type = source_type
end

Instance Attribute Details

#accountObject

The connected account ID whose Stripe balance to use as the source of payment



2267
2268
2269
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2267

def 
  @account
end

#source_typeObject



2269
2270
2271
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2269

def source_type
  @source_type
end