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

#to_h

Constructor Details

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

Returns a new instance of StripeBalance.



1292
1293
1294
1295
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1292

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



1288
1289
1290
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1288

def 
  @account
end

#source_typeObject



1290
1291
1292
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1290

def source_type
  @source_type
end