Class: Stripe::V2::Tax::ManualRuleCreateParams::ScheduledTaxRate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Tax::ManualRuleCreateParams::ScheduledTaxRate
- Defined in:
- lib/stripe/params/v2/tax/manual_rule_create_params.rb
Defined Under Namespace
Classes: Rate
Instance Attribute Summary collapse
-
#rates ⇒ Object
The tax rates to be applied.
-
#starts_at ⇒ Object
The start time for the tax rate.
Instance Method Summary collapse
-
#initialize(rates: nil, starts_at: nil) ⇒ ScheduledTaxRate
constructor
A new instance of ScheduledTaxRate.
Methods inherited from RequestParams
Constructor Details
#initialize(rates: nil, starts_at: nil) ⇒ ScheduledTaxRate
Returns a new instance of ScheduledTaxRate.
74 75 76 77 |
# File 'lib/stripe/params/v2/tax/manual_rule_create_params.rb', line 74 def initialize(rates: nil, starts_at: nil) @rates = rates @starts_at = starts_at end |
Instance Attribute Details
#rates ⇒ Object
The tax rates to be applied.
70 71 72 |
# File 'lib/stripe/params/v2/tax/manual_rule_create_params.rb', line 70 def rates @rates end |
#starts_at ⇒ Object
The start time for the tax rate.
72 73 74 |
# File 'lib/stripe/params/v2/tax/manual_rule_create_params.rb', line 72 def starts_at @starts_at end |