Class: Stripe::Tax::SettingsUpdateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/tax/settings_update_params.rb

Defined Under Namespace

Classes: Defaults, HeadOffice

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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
  @expand = expand
  @head_office = head_office
end

Instance Attribute Details

#defaultsObject

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

#expandObject

Specifies which fields in the response should be expanded.



60
61
62
# File 'lib/stripe/params/tax/settings_update_params.rb', line 60

def expand
  @expand
end

#head_officeObject

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