Class: Stripe::ChargeCaptureParams::PaymentDetails::LodgingDatum::Total::Tax::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ChargeCaptureParams::PaymentDetails::LodgingDatum::Total::Tax::Tax
- Defined in:
- lib/stripe/params/charge_capture_params.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Tax amount in cents.
-
#rate ⇒ Object
Tax rate.
-
#type ⇒ Object
Type of tax applied.
Instance Method Summary collapse
-
#initialize(amount: nil, rate: nil, type: nil) ⇒ Tax
constructor
A new instance of Tax.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(amount: nil, rate: nil, type: nil) ⇒ Tax
Returns a new instance of Tax.
1530 1531 1532 1533 1534 |
# File 'lib/stripe/params/charge_capture_params.rb', line 1530 def initialize(amount: nil, rate: nil, type: nil) @amount = amount @rate = rate @type = type end |
Instance Attribute Details
#amount ⇒ Object
Tax amount in cents.
1524 1525 1526 |
# File 'lib/stripe/params/charge_capture_params.rb', line 1524 def amount @amount end |
#rate ⇒ Object
Tax rate.
1526 1527 1528 |
# File 'lib/stripe/params/charge_capture_params.rb', line 1526 def rate @rate end |
#type ⇒ Object
Type of tax applied.
1528 1529 1530 |
# File 'lib/stripe/params/charge_capture_params.rb', line 1528 def type @type end |