Class: Io::Flow::V0::Models::Subcatalog

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

Overview

A configuration with custom query to select a subset of the catalog items for a localized experience

Instance Attribute Summary collapse

Attributes inherited from ExpandableSubcatalog

#discriminator

Instance Method Summary collapse

Methods inherited from ExpandableSubcatalog

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ Subcatalog

Returns a new instance of Subcatalog.



63849
63850
63851
63852
63853
63854
63855
63856
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63849

def initialize(incoming={})
  super(:discriminator => ExpandableSubcatalog::Types::SUBCATALOG)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :catalog, :settings], 'Subcatalog')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @catalog = (x = opts.delete(:catalog); x.is_a?(::Io::Flow::V0::Models::Catalog) ? x : ::Io::Flow::V0::Models::Catalog.new(x))
  @settings = (x = opts.delete(:settings); x.is_a?(::Io::Flow::V0::Models::SubcatalogSettings) ? x : ::Io::Flow::V0::Models::SubcatalogSettings.new(x))
end

Instance Attribute Details

#catalogObject (readonly)

Returns the value of attribute catalog.



63847
63848
63849
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63847

def catalog
  @catalog
end

#idObject (readonly)

Returns the value of attribute id.



63847
63848
63849
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63847

def id
  @id
end

#settingsObject (readonly)

Returns the value of attribute settings.



63847
63848
63849
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63847

def settings
  @settings
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



63862
63863
63864
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63862

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

#subtype_to_hashObject



63866
63867
63868
63869
63870
63871
63872
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63866

def subtype_to_hash
  {
    :id => id,
    :catalog => catalog.to_hash,
    :settings => settings.to_hash
  }
end

#to_jsonObject



63858
63859
63860
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63858

def to_json
  JSON.dump(to_hash)
end