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.



34611
34612
34613
34614
34615
34616
34617
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34611

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.



34609
34610
34611
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34609

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



34609
34610
34611
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34609

def name
  @name
end

#parentObject (readonly)

Returns the value of attribute parent.



34609
34610
34611
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34609

def parent
  @parent
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



34623
34624
34625
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34623

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

#to_hashObject



34627
34628
34629
34630
34631
34632
34633
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34627

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

#to_jsonObject



34619
34620
34621
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34619

def to_json
  JSON.dump(to_hash)
end