Class: Io::Flow::V0::Models::CatalogItemDocument

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

Instance Attribute Summary collapse

Attributes inherited from Document

#discriminator

Instance Method Summary collapse

Methods inherited from Document

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ CatalogItemDocument

Returns a new instance of CatalogItemDocument.



31448
31449
31450
31451
31452
31453
31454
31455
31456
31457
31458
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31448

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

#attributesObject (readonly)

Returns the value of attribute attributes.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def attributes
  @attributes
end

#categoriesObject (readonly)

Returns the value of attribute categories.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def categories
  @categories
end

#experiencesObject (readonly)

Returns the value of attribute experiences.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def experiences
  @experiences
end

#imagesObject (readonly)

Returns the value of attribute images.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def images
  @images
end

#nameObject (readonly)

Returns the value of attribute name.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



31446
31447
31448
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31446

def number
  @number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



31464
31465
31466
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31464

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

#subtype_to_hashObject



31468
31469
31470
31471
31472
31473
31474
31475
31476
31477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31468

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_jsonObject



31460
31461
31462
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31460

def to_json
  JSON.dump(to_hash)
end