Class: Io::Flow::V0::Models::CatalogItemDocument
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#categories ⇒ Object
readonly
Returns the value of attribute categories.
-
#experiences ⇒ Object
readonly
Returns the value of attribute experiences.
-
#images ⇒ Object
readonly
Returns the value of attribute images.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
Attributes inherited from Document
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CatalogItemDocument
constructor
A new instance of CatalogItemDocument.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Document
Constructor Details
#initialize(incoming = {}) ⇒ CatalogItemDocument
Returns a new instance of CatalogItemDocument.
11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11619 def initialize(incoming={}) super(:discriminator => Document::Types::CATALOG_ITEM_DOCUMENT) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:number, :name, :categories, :experiences, :attributes, :images], 'CatalogItemDocument') @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String) @categories = HttpClient::Preconditions.assert_class('categories', opts.delete(:categories), Array).map { |v| HttpClient::Preconditions.assert_class('categories', v, String) } @experiences = HttpClient::Preconditions.assert_class('experiences', opts.delete(:experiences), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExperienceSummary) ? x : ::Io::Flow::V0::Models::ExperienceSummary.new(x)) } @attributes = HttpClient::Preconditions.assert_class('attributes', opts.delete(:attributes), Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h } @images = (x = opts.delete(:images); x.is_a?(::Io::Flow::V0::Models::CatalogItemDocumentImages) ? x : ::Io::Flow::V0::Models::CatalogItemDocumentImages.new(x)) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def attributes @attributes end |
#categories ⇒ Object (readonly)
Returns the value of attribute categories.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def categories @categories end |
#experiences ⇒ Object (readonly)
Returns the value of attribute experiences.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def experiences @experiences end |
#images ⇒ Object (readonly)
Returns the value of attribute images.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def images @images end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def name @name end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
11617 11618 11619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11617 def number @number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
11635 11636 11637 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11635 def copy(incoming={}) CatalogItemDocument.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11639 def subtype_to_hash { :number => number, :name => name, :categories => categories, :experiences => experiences.map { |o| o.to_hash }, :attributes => attributes, :images => images.to_hash } end |
#to_json ⇒ Object
11631 11632 11633 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11631 def to_json JSON.dump(to_hash) end |