Class: Io::Flow::V0::Models::HarmonizedCategory

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

Overview

Categories optimized for harmonization

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ HarmonizedCategory

Returns a new instance of HarmonizedCategory.



34060
34061
34062
34063
34064
34065
34066
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34060

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :name], 'HarmonizedCategory')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @parent = (x = opts.delete(:parent); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::HarmonizedCategoryReference) ? x : ::Io::Flow::V0::Models::HarmonizedCategoryReference.new(x)))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



34058
34059
34060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34058

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



34058
34059
34060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34058

def name
  @name
end

#parentObject (readonly)

Returns the value of attribute parent.



34058
34059
34060
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34058

def parent
  @parent
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



34072
34073
34074
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34072

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

#to_hashObject



34076
34077
34078
34079
34080
34081
34082
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34076

def to_hash
  {
    :id => id,
    :name => name,
    :parent => parent.nil? ? nil : parent.to_hash
  }
end

#to_jsonObject



34068
34069
34070
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34068

def to_json
  JSON.dump(to_hash)
end