Class: Io::Flow::V0::Models::Hs6

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

Overview

The (Harmonized System) HS-6 code assigned to an item.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Hs6

Returns a new instance of Hs6.



45245
45246
45247
45248
45249
45250
45251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45245

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :item, :code], 'Hs6')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::HarmonizedItemReference) ? x : ::Io::Flow::V0::Models::HarmonizedItemReference.new(x))
  @code = HttpClient::Preconditions.assert_class('code', opts.delete(:code), String)
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



45243
45244
45245
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45243

def code
  @code
end

#idObject (readonly)

Returns the value of attribute id.



45243
45244
45245
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45243

def id
  @id
end

#itemObject (readonly)

Returns the value of attribute item.



45243
45244
45245
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45243

def item
  @item
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



45257
45258
45259
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45257

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

#to_hashObject



45261
45262
45263
45264
45265
45266
45267
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45261

def to_hash
  {
    :id => id,
    :item => item.to_hash,
    :code => code
  }
end

#to_jsonObject



45253
45254
45255
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45253

def to_json
  JSON.dump(to_hash)
end