Class: Stripe::PaymentIntentConfirmParams::PaymentMethodData::StripeBalance

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



2227
2228
2229
2230
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2227

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



2223
2224
2225
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2223

def 
  @account
end

#source_typeObject



2225
2226
2227
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 2225

def source_type
  @source_type
end