Class: Stripe::PaymentIntent::CreateParams::PaymentMethodData::StripeBalance

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/payment_intent.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.



3311
3312
3313
3314
# File 'lib/stripe/resources/payment_intent.rb', line 3311

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



3307
3308
3309
# File 'lib/stripe/resources/payment_intent.rb', line 3307

def 
  @account
end

#source_typeObject



3309
3310
3311
# File 'lib/stripe/resources/payment_intent.rb', line 3309

def source_type
  @source_type
end