Class: Stripe::OrderCreateParams::TaxDetails

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/order_create_params.rb

Defined Under Namespace

Classes: TaxId

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(tax_exempt: nil, tax_ids: nil) ⇒ TaxDetails

Returns a new instance of TaxDetails.



1995
1996
1997
1998
# File 'lib/stripe/params/order_create_params.rb', line 1995

def initialize(tax_exempt: nil, tax_ids: nil)
  @tax_exempt = tax_exempt
  @tax_ids = tax_ids
end

Instance Attribute Details

#tax_exemptObject

The purchaser’s tax exemption status. One of ‘none`, `exempt`, or `reverse`.



1991
1992
1993
# File 'lib/stripe/params/order_create_params.rb', line 1991

def tax_exempt
  @tax_exempt
end

#tax_idsObject

The purchaser’s tax IDs to be used for this order.



1993
1994
1995
# File 'lib/stripe/params/order_create_params.rb', line 1993

def tax_ids
  @tax_ids
end