Class: Io::Flow::V0::Models::HarmonizedItemPutForm

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

Returns a new instance of HarmonizedItemPutForm.



19567
19568
19569
19570
19571
19572
19573
19574
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19567

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:name], 'HarmonizedItemPutForm')
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), 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.



19565
19566
19567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19565

def attributes
  @attributes
end

#categoriesObject (readonly)

Returns the value of attribute categories.



19565
19566
19567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19565

def categories
  @categories
end

#descriptionObject (readonly)

Returns the value of attribute description.



19565
19566
19567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19565

def description
  @description
end

#nameObject (readonly)

Returns the value of attribute name.



19565
19566
19567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19565

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



19580
19581
19582
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19580

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

#to_hashObject



19584
19585
19586
19587
19588
19589
19590
19591
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19584

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

#to_jsonObject



19576
19577
19578
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19576

def to_json
  JSON.dump(to_hash)
end