Class: Stripe::PaymentIntentUpdateParams::PaymentMethodData::StripeBalance

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



1278
1279
1280
1281
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1278

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



1274
1275
1276
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1274

def 
  @account
end

#source_typeObject



1276
1277
1278
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1276

def source_type
  @source_type
end