Class: Io::Flow::V0::Models::LocalizedLineItem

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

Overview

Line items on the order, with localized pricing information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ LocalizedLineItem

Returns a new instance of LocalizedLineItem.



45726
45727
45728
45729
45730
45731
45732
45733
45734
45735
45736
45737
45738
45739
45740
45741
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45726

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:number, :name, :quantity, :local], 'LocalizedLineItem')
  @id = (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, String))
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer)
  @center = (x = opts.delete(:center); x.nil? ? nil : HttpClient::Preconditions.assert_class('center', x, String))
  @price = (x = opts.delete(:price); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x)))
  @discount = (x = opts.delete(:discount); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::LocalizedLineItemDiscount) ? x : ::Io::Flow::V0::Models::LocalizedLineItemDiscount.new(x)))
  @discounts = (x = opts.delete(:discounts); x.nil? ? nil : HttpClient::Preconditions.assert_class('discounts', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LocalizedLineItemDiscount) ? x : ::Io::Flow::V0::Models::LocalizedLineItemDiscount.new(x)) })
  @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h })
  @local = (x = opts.delete(:local); x.is_a?(::Io::Flow::V0::Models::Local) ? x : ::Io::Flow::V0::Models::Local.new(x))
  @shipment_estimate = (x = opts.delete(:shipment_estimate); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x)))
  @price_source = (x = opts.delete(:price_source); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PriceSource) ? x : ::Io::Flow::V0::Models::PriceSource.from_json(x)))
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def attributes
  @attributes
end

#centerObject (readonly)

Returns the value of attribute center.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def center
  @center
end

#discountObject (readonly)

Returns the value of attribute discount.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def discount
  @discount
end

#discountsObject (readonly)

Returns the value of attribute discounts.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def discounts
  @discounts
end

#idObject (readonly)

Returns the value of attribute id.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def id
  @id
end

#localObject (readonly)

Returns the value of attribute local.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def local
  @local
end

#nameObject (readonly)

Returns the value of attribute name.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def number
  @number
end

#priceObject (readonly)

Returns the value of attribute price.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def price
  @price
end

#price_sourceObject (readonly)

Returns the value of attribute price_source.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def price_source
  @price_source
end

#quantityObject (readonly)

Returns the value of attribute quantity.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def quantity
  @quantity
end

#shipment_estimateObject (readonly)

Returns the value of attribute shipment_estimate.



45724
45725
45726
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45724

def shipment_estimate
  @shipment_estimate
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



45747
45748
45749
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45747

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

#to_hashObject



45751
45752
45753
45754
45755
45756
45757
45758
45759
45760
45761
45762
45763
45764
45765
45766
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45751

def to_hash
  {
    :id => id,
    :number => number,
    :name => name,
    :quantity => quantity,
    :center => center,
    :price => price.nil? ? nil : price.to_hash,
    :discount => discount.nil? ? nil : discount.to_hash,
    :discounts => discounts.nil? ? nil : discounts.map { |o| o.to_hash },
    :attributes => attributes.nil? ? nil : attributes,
    :local => local.to_hash,
    :shipment_estimate => shipment_estimate.nil? ? nil : shipment_estimate.to_hash,
    :price_source => price_source.nil? ? nil : price_source.to_hash
  }
end

#to_jsonObject



45743
45744
45745
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45743

def to_json
  JSON.dump(to_hash)
end