Class: Io::Flow::V0::Models::SubcatalogStatistics

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

Overview

Statistics related to the items in this subcatalog, including item count, number of distinct categories, etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ SubcatalogStatistics

Returns a new instance of SubcatalogStatistics.



64152
64153
64154
64155
64156
64157
64158
64159
64160
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64152

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:excluded, :included, :restricted, :queue, :catalog], 'SubcatalogStatistics')
  @excluded = (x = opts.delete(:excluded); x.is_a?(::Io::Flow::V0::Models::ItemStatistics) ? x : ::Io::Flow::V0::Models::ItemStatistics.new(x))
  @included = (x = opts.delete(:included); x.is_a?(::Io::Flow::V0::Models::ItemStatistics) ? x : ::Io::Flow::V0::Models::ItemStatistics.new(x))
  @restricted = (x = opts.delete(:restricted); x.is_a?(::Io::Flow::V0::Models::ItemStatistics) ? x : ::Io::Flow::V0::Models::ItemStatistics.new(x))
  @queue = (x = opts.delete(:queue); x.is_a?(::Io::Flow::V0::Models::ItemStatistics) ? x : ::Io::Flow::V0::Models::ItemStatistics.new(x))
  @catalog = (x = opts.delete(:catalog); x.is_a?(::Io::Flow::V0::Models::CatalogStatistics) ? x : ::Io::Flow::V0::Models::CatalogStatistics.new(x))
end

Instance Attribute Details

#catalogObject (readonly)

Returns the value of attribute catalog.



64150
64151
64152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64150

def catalog
  @catalog
end

#excludedObject (readonly)

Returns the value of attribute excluded.



64150
64151
64152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64150

def excluded
  @excluded
end

#includedObject (readonly)

Returns the value of attribute included.



64150
64151
64152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64150

def included
  @included
end

#queueObject (readonly)

Returns the value of attribute queue.



64150
64151
64152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64150

def queue
  @queue
end

#restrictedObject (readonly)

Returns the value of attribute restricted.



64150
64151
64152
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64150

def restricted
  @restricted
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



64166
64167
64168
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64166

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

#to_hashObject



64170
64171
64172
64173
64174
64175
64176
64177
64178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64170

def to_hash
  {
    :excluded => excluded.to_hash,
    :included => included.to_hash,
    :restricted => restricted.to_hash,
    :queue => queue.to_hash,
    :catalog => catalog.to_hash
  }
end

#to_jsonObject



64162
64163
64164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 64162

def to_json
  JSON.dump(to_hash)
end