Class: Stripe::Tax::SettingsService::UpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Tax::SettingsService::UpdateParams
- Defined in:
- lib/stripe/services/tax/settings_service.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.
74 75 76 77 78 |
# File 'lib/stripe/services/tax/settings_service.rb', line 74 def initialize(defaults: nil, expand: nil, head_office: nil) @defaults = defaults = @head_office = head_office end |
Instance Attribute Details
#defaults ⇒ Object
Default configuration to be used on Stripe Tax calculations.
68 69 70 |
# File 'lib/stripe/services/tax/settings_service.rb', line 68 def defaults @defaults end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
70 71 72 |
# File 'lib/stripe/services/tax/settings_service.rb', line 70 def end |
#head_office ⇒ Object
The place where your business is located.
72 73 74 |
# File 'lib/stripe/services/tax/settings_service.rb', line 72 def head_office @head_office end |