Class: Stripe::PaymentMethod::CreateParams::StripeBalance

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



1100
1101
1102
1103
# File 'lib/stripe/resources/payment_method.rb', line 1100

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



1096
1097
1098
# File 'lib/stripe/resources/payment_method.rb', line 1096

def 
  @account
end

#source_typeObject



1098
1099
1100
# File 'lib/stripe/resources/payment_method.rb', line 1098

def source_type
  @source_type
end