Class: Stripe::V2::Tax::ManualRuleCreateParams::ScheduledTaxRate

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/tax/manual_rule_create_params.rb

Defined Under Namespace

Classes: Rate

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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

#ratesObject

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_atObject

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