Class: Stripe::V2::Tax::ManualRuleUpdateParams::Location
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Tax::ManualRuleUpdateParams::Location
- Defined in:
- lib/stripe/params/v2/tax/manual_rule_update_params.rb
Instance Attribute Summary collapse
-
#country ⇒ Object
Country ISO-3166.
-
#state ⇒ Object
State ISO-3166.
Instance Method Summary collapse
-
#initialize(country: nil, state: nil) ⇒ Location
constructor
A new instance of Location.
Methods inherited from RequestParams
Constructor Details
#initialize(country: nil, state: nil) ⇒ Location
Returns a new instance of Location.
14 15 16 17 |
# File 'lib/stripe/params/v2/tax/manual_rule_update_params.rb', line 14 def initialize(country: nil, state: nil) @country = country @state = state end |
Instance Attribute Details
#country ⇒ Object
Country ISO-3166.
10 11 12 |
# File 'lib/stripe/params/v2/tax/manual_rule_update_params.rb', line 10 def country @country end |
#state ⇒ Object
State ISO-3166.
12 13 14 |
# File 'lib/stripe/params/v2/tax/manual_rule_update_params.rb', line 12 def state @state end |