Class: Io::Flow::V0::Models::Hs10

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

Overview

The (Harmonized System) HS-10 code assigned to an item with a given origin/destination pair.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Hs10

Returns a new instance of Hs10.



41881
41882
41883
41884
41885
41886
41887
41888
41889
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41881

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :item, :origin, :destination, :code], 'Hs10')
  @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))
  @origin = HttpClient::Preconditions.assert_class('origin', opts.delete(:origin), String)
  @destination = HttpClient::Preconditions.assert_class('destination', opts.delete(:destination), String)
  @code = HttpClient::Preconditions.assert_class('code', opts.delete(:code), String)
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



41879
41880
41881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41879

def code
  @code
end

#destinationObject (readonly)

Returns the value of attribute destination.



41879
41880
41881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41879

def destination
  @destination
end

#idObject (readonly)

Returns the value of attribute id.



41879
41880
41881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41879

def id
  @id
end

#itemObject (readonly)

Returns the value of attribute item.



41879
41880
41881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41879

def item
  @item
end

#originObject (readonly)

Returns the value of attribute origin.



41879
41880
41881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41879

def origin
  @origin
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



41895
41896
41897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41895

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

#to_hashObject



41899
41900
41901
41902
41903
41904
41905
41906
41907
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41899

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

#to_jsonObject



41891
41892
41893
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41891

def to_json
  JSON.dump(to_hash)
end