Class: Stripe::Quote::UpdateParams::AutomaticTax::Liability

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/quote.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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

Returns a new instance of Liability.



1587
1588
1589
1590
# File 'lib/stripe/resources/quote.rb', line 1587

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

Instance Attribute Details

#accountObject

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



1583
1584
1585
# File 'lib/stripe/resources/quote.rb', line 1583

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1585
1586
1587
# File 'lib/stripe/resources/quote.rb', line 1585

def type
  @type
end