Class: Stripe::Tax::Settings::UpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Tax::Settings::UpdateParams
- Defined in:
- lib/stripe/resources/tax/settings.rb
Defined Under Namespace
Classes: Defaults, HeadOffice
Instance Attribute Summary collapse
-
#defaults ⇒ Object
Default configuration to be used on Stripe Tax calculations.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#head_office ⇒ Object
The place where your business is located.
Instance Method Summary collapse
-
#initialize(defaults: nil, expand: nil, head_office: nil) ⇒ UpdateParams
constructor
A new instance of UpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(defaults: nil, expand: nil, head_office: nil) ⇒ UpdateParams
Returns a new instance of UpdateParams.
114 115 116 117 118 |
# File 'lib/stripe/resources/tax/settings.rb', line 114 def initialize(defaults: nil, expand: nil, head_office: nil) @defaults = defaults @expand = @head_office = head_office end |
Instance Attribute Details
#defaults ⇒ Object
Default configuration to be used on Stripe Tax calculations.
108 109 110 |
# File 'lib/stripe/resources/tax/settings.rb', line 108 def defaults @defaults end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
110 111 112 |
# File 'lib/stripe/resources/tax/settings.rb', line 110 def @expand end |
#head_office ⇒ Object
The place where your business is located.
112 113 114 |
# File 'lib/stripe/resources/tax/settings.rb', line 112 def head_office @head_office end |