Class: Io::Flow::V0::Models::CheckoutItemContent

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

Overview

A Checkout Item Content provides information about an item to support rendering of that item in the context of checkout

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ CheckoutItemContent

Returns a new instance of CheckoutItemContent.



32833
32834
32835
32836
32837
32838
32839
32840
32841
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32833

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:item, :name, :attributes], 'CheckoutItemContent')
  @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::Item) ? x : ::Io::Flow::V0::Models::Item.new(x))
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
  @attributes = HttpClient::Preconditions.assert_class('attributes', opts.delete(:attributes), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::CheckoutItemContentAttribute) ? x : ::Io::Flow::V0::Models::CheckoutItemContentAttribute.new(x)) }
  @image = (x = opts.delete(:image); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Image) ? x : ::Io::Flow::V0::Models::Image.new(x)))
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



32831
32832
32833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32831

def attributes
  @attributes
end

#descriptionObject (readonly)

Returns the value of attribute description.



32831
32832
32833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32831

def description
  @description
end

#imageObject (readonly)

Returns the value of attribute image.



32831
32832
32833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32831

def image
  @image
end

#itemObject (readonly)

Returns the value of attribute item.



32831
32832
32833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32831

def item
  @item
end

#nameObject (readonly)

Returns the value of attribute name.



32831
32832
32833
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32831

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32847
32848
32849
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32847

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

#to_hashObject



32851
32852
32853
32854
32855
32856
32857
32858
32859
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32851

def to_hash
  {
    :item => item.to_hash,
    :name => name,
    :description => description,
    :attributes => attributes.map { |o| o.to_hash },
    :image => image.nil? ? nil : image.to_hash
  }
end

#to_jsonObject



32843
32844
32845
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32843

def to_json
  JSON.dump(to_hash)
end