Class: Io::Flow::V0::Models::SubcatalogItem

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

Overview

Represents information specific to an item in a given subcatalog

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ SubcatalogItem

Returns a new instance of SubcatalogItem.



27040
27041
27042
27043
27044
27045
27046
27047
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27040

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :item, :status], 'SubcatalogItem')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::Item) ? x : ::Io::Flow::V0::Models::Item.new(x))
  @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::SubcatalogItemStatus) ? x : ::Io::Flow::V0::Models::SubcatalogItemStatus.apply(x))
  @item_function = (x = opts.delete(:item_function); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ExpandableItemFunction) ? x : ::Io::Flow::V0::Models::ExpandableItemFunction.from_json(x)))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



27038
27039
27040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27038

def id
  @id
end

#itemObject (readonly)

Returns the value of attribute item.



27038
27039
27040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27038

def item
  @item
end

#item_functionObject (readonly)

Returns the value of attribute item_function.



27038
27039
27040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27038

def item_function
  @item_function
end

#statusObject (readonly)

Returns the value of attribute status.



27038
27039
27040
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27038

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



27053
27054
27055
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27053

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

#to_hashObject



27057
27058
27059
27060
27061
27062
27063
27064
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27057

def to_hash
  {
    :id => id,
    :item => item.to_hash,
    :status => status.value,
    :item_function => item_function.nil? ? nil : item_function.to_hash
  }
end

#to_jsonObject



27049
27050
27051
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27049

def to_json
  JSON.dump(to_hash)
end