Class: Io::Flow::V0::Models::TaxRegistrationForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TaxRegistrationForm

Returns a new instance of TaxRegistrationForm.



40323
40324
40325
40326
40327
40328
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40323

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:number], 'TaxRegistrationForm')
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @company_name = (x = opts.delete(:company_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('company_name', x, String))
end

Instance Attribute Details

#company_nameObject (readonly)

Returns the value of attribute company_name.



40321
40322
40323
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40321

def company_name
  @company_name
end

#numberObject (readonly)

Returns the value of attribute number.



40321
40322
40323
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40321

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



40334
40335
40336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40334

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

#to_hashObject



40338
40339
40340
40341
40342
40343
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40338

def to_hash
  {
    :number => number,
    :company_name => company_name
  }
end

#to_jsonObject



40330
40331
40332
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40330

def to_json
  JSON.dump(to_hash)
end