Class: Stripe::PaymentIntent::ConfirmParams::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.



10882
10883
10884
10885
# File 'lib/stripe/resources/payment_intent.rb', line 10882

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



10878
10879
10880
# File 'lib/stripe/resources/payment_intent.rb', line 10878

def 
  @account
end

#source_typeObject



10880
10881
10882
# File 'lib/stripe/resources/payment_intent.rb', line 10880

def source_type
  @source_type
end