Class: Io::Flow::V0::Models::HarmonizedCategory
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::HarmonizedCategory
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Categories optimized for harmonization
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ HarmonizedCategory
constructor
A new instance of HarmonizedCategory.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ HarmonizedCategory
Returns a new instance of HarmonizedCategory.
19784 19785 19786 19787 19788 19789 19790 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19784 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
#id ⇒ Object (readonly)
Returns the value of attribute id.
19782 19783 19784 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19782 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
19782 19783 19784 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19782 def name @name end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
19782 19783 19784 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19782 def parent @parent end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
19796 19797 19798 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19796 def copy(incoming={}) HarmonizedCategory.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
19800 19801 19802 19803 19804 19805 19806 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19800 def to_hash { :id => id, :name => name, :parent => parent.nil? ? nil : parent.to_hash } end |
#to_json ⇒ Object
19792 19793 19794 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19792 def to_json JSON.dump(to_hash) end |