Class: Io::Flow::V0::Models::AvalaraTaxSetting

Inherits:
TaxSetting
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from TaxSetting

#discriminator

Instance Method Summary collapse

Methods inherited from TaxSetting

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ AvalaraTaxSetting

Returns a new instance of AvalaraTaxSetting.



29503
29504
29505
29506
29507
29508
29509
29510
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29503

def initialize(incoming={})
  super(:discriminator => TaxSetting::Types::AVALARA_TAX_SETTING)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:company_code, :base_currency], 'AvalaraTaxSetting')
  @company_code = HttpClient::Preconditions.assert_class('company_code', opts.delete(:company_code), String)
  @base_currency = HttpClient::Preconditions.assert_class('base_currency', opts.delete(:base_currency), String)
  @api_key = (x = opts.delete(:api_key); x.nil? ? nil : HttpClient::Preconditions.assert_class('api_key', x, String))
end

Instance Attribute Details

#api_keyObject (readonly)

Returns the value of attribute api_key.



29501
29502
29503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29501

def api_key
  @api_key
end

#base_currencyObject (readonly)

Returns the value of attribute base_currency.



29501
29502
29503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29501

def base_currency
  @base_currency
end

#company_codeObject (readonly)

Returns the value of attribute company_code.



29501
29502
29503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29501

def company_code
  @company_code
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



29516
29517
29518
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29516

def copy(incoming={})
  AvalaraTaxSetting.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



29520
29521
29522
29523
29524
29525
29526
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29520

def subtype_to_hash
  {
    :company_code => company_code,
    :base_currency => base_currency,
    :api_key => api_key
  }
end

#to_jsonObject



29512
29513
29514
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 29512

def to_json
  JSON.dump(to_hash)
end