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.



33897
33898
33899
33900
33901
33902
33903
33904
33905
33906
33907
33908
33909
33910
33911
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33897

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:number, :name, :quantity, :local], 'LocalizedLineItem')
  @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.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def attributes
  @attributes
end

#centerObject (readonly)

Returns the value of attribute center.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def center
  @center
end

#discountObject (readonly)

Returns the value of attribute discount.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def discount
  @discount
end

#discountsObject (readonly)

Returns the value of attribute discounts.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def discounts
  @discounts
end

#localObject (readonly)

Returns the value of attribute local.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def local
  @local
end

#nameObject (readonly)

Returns the value of attribute name.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def number
  @number
end

#priceObject (readonly)

Returns the value of attribute price.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def price
  @price
end

#price_sourceObject (readonly)

Returns the value of attribute price_source.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def price_source
  @price_source
end

#quantityObject (readonly)

Returns the value of attribute quantity.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def quantity
  @quantity
end

#shipment_estimateObject (readonly)

Returns the value of attribute shipment_estimate.



33895
33896
33897
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33895

def shipment_estimate
  @shipment_estimate
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33917
33918
33919
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33917

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

#to_hashObject



33921
33922
33923
33924
33925
33926
33927
33928
33929
33930
33931
33932
33933
33934
33935
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33921

def to_hash
  {
    :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



33913
33914
33915
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33913

def to_json
  JSON.dump(to_hash)
end