Class: Stripe::Tax::SettingsUpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Tax::SettingsUpdateParams
- Defined in:
- lib/stripe/params/tax/settings_update_params.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) ⇒ SettingsUpdateParams
constructor
A new instance of SettingsUpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(defaults: nil, expand: nil, head_office: nil) ⇒ SettingsUpdateParams
Returns a new instance of SettingsUpdateParams.
64 65 66 67 68 |
# File 'lib/stripe/params/tax/settings_update_params.rb', line 64 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.
58 59 60 |
# File 'lib/stripe/params/tax/settings_update_params.rb', line 58 def defaults @defaults end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
60 61 62 |
# File 'lib/stripe/params/tax/settings_update_params.rb', line 60 def end |
#head_office ⇒ Object
The place where your business is located.
62 63 64 |
# File 'lib/stripe/params/tax/settings_update_params.rb', line 62 def head_office @head_office end |