Class: Io::Flow::V0::Models::HarmonizedItemForm

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 = {}) ⇒ HarmonizedItemForm

Returns a new instance of HarmonizedItemForm.



20012
20013
20014
20015
20016
20017
20018
20019
20020
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20012

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:name, :number], 'HarmonizedItemForm')
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @categories = (x = opts.delete(:categories); x.nil? ? nil : HttpClient::Preconditions.assert_class('categories', x, Array).map { |v| HttpClient::Preconditions.assert_class('categories', v, String) })
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
  @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h })
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



20010
20011
20012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20010

def attributes
  @attributes
end

#categoriesObject (readonly)

Returns the value of attribute categories.



20010
20011
20012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20010

def categories
  @categories
end

#descriptionObject (readonly)

Returns the value of attribute description.



20010
20011
20012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20010

def description
  @description
end

#nameObject (readonly)

Returns the value of attribute name.



20010
20011
20012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20010

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



20010
20011
20012
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20010

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20026
20027
20028
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20026

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

#to_hashObject



20030
20031
20032
20033
20034
20035
20036
20037
20038
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20030

def to_hash
  {
    :name => name,
    :number => number,
    :categories => categories.nil? ? nil : categories,
    :description => description,
    :attributes => attributes.nil? ? nil : attributes
  }
end

#to_jsonObject



20022
20023
20024
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20022

def to_json
  JSON.dump(to_hash)
end