Class: Io::Flow::V0::Models::TaxRegistration

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

Overview

Result of looking up a specific tax registration number. Indicates validity of a number for a specific country and (if valid) the associated person/company.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TaxRegistration

Returns a new instance of TaxRegistration.



70254
70255
70256
70257
70258
70259
70260
70261
70262
70263
70264
70265
70266
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70254

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :key, :number, :timestamp, :result], 'TaxRegistration')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @key = HttpClient::Preconditions.assert_class('key', opts.delete(:key), String)
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @result = (x = opts.delete(:result); x.is_a?(::Io::Flow::V0::Models::TaxVerificationResult) ? x : ::Io::Flow::V0::Models::TaxVerificationResult.apply(x))
  @result_reason = (x = opts.delete(:result_reason); x.nil? ? nil : HttpClient::Preconditions.assert_class('result_reason', x, String))
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
  @address = (x = opts.delete(:address); x.nil? ? nil : HttpClient::Preconditions.assert_class('address', x, String))
  @company_name = (x = opts.delete(:company_name); x.nil? ? nil : HttpClient::Preconditions.assert_class('company_name', x, String))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def address
  @address
end

#company_nameObject (readonly)

Returns the value of attribute company_name.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def company_name
  @company_name
end

#idObject (readonly)

Returns the value of attribute id.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def id
  @id
end

#keyObject (readonly)

Returns the value of attribute key.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def key
  @key
end

#nameObject (readonly)

Returns the value of attribute name.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def number
  @number
end

#resultObject (readonly)

Returns the value of attribute result.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def result
  @result
end

#result_reasonObject (readonly)

Returns the value of attribute result_reason.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def result_reason
  @result_reason
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



70252
70253
70254
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70252

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



70272
70273
70274
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70272

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

#to_hashObject



70276
70277
70278
70279
70280
70281
70282
70283
70284
70285
70286
70287
70288
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70276

def to_hash
  {
    :id => id,
    :key => key,
    :number => number,
    :timestamp => timestamp,
    :result => result.value,
    :result_reason => result_reason,
    :name => name,
    :address => address,
    :company_name => company_name
  }
end

#to_jsonObject



70268
70269
70270
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 70268

def to_json
  JSON.dump(to_hash)
end