Class: Stripe::PaymentIntentService::ConfirmParams::PaymentMethodData::StripeBalance

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



9878
9879
9880
9881
# File 'lib/stripe/services/payment_intent_service.rb', line 9878

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



9874
9875
9876
# File 'lib/stripe/services/payment_intent_service.rb', line 9874

def 
  @account
end

#source_typeObject



9876
9877
9878
# File 'lib/stripe/services/payment_intent_service.rb', line 9876

def source_type
  @source_type
end