Class: Stripe::SubscriptionScheduleCreateParams::Phase::AutomaticTax::Liability

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/subscription_schedule_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(account: nil, type: nil) ⇒ Liability

Returns a new instance of Liability.



348
349
350
351
# File 'lib/stripe/params/subscription_schedule_create_params.rb', line 348

def initialize(account: nil, type: nil)
  @account = 
  @type = type
end

Instance Attribute Details

#accountObject

The connected account being referenced when ‘type` is `account`.



344
345
346
# File 'lib/stripe/params/subscription_schedule_create_params.rb', line 344

def 
  @account
end

#typeObject

Type of the account referenced in the request.



346
347
348
# File 'lib/stripe/params/subscription_schedule_create_params.rb', line 346

def type
  @type
end