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.



49145
49146
49147
49148
49149
49150
49151
49152
49153
49154
49155
49156
49157
49158
49159
49160
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49145

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.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def attributes
  @attributes
end

#centerObject (readonly)

Returns the value of attribute center.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def center
  @center
end

#discountObject (readonly)

Returns the value of attribute discount.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def discount
  @discount
end

#discountsObject (readonly)

Returns the value of attribute discounts.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def discounts
  @discounts
end

#idObject (readonly)

Returns the value of attribute id.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def id
  @id
end

#localObject (readonly)

Returns the value of attribute local.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def local
  @local
end

#nameObject (readonly)

Returns the value of attribute name.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def number
  @number
end

#priceObject (readonly)

Returns the value of attribute price.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def price
  @price
end

#price_sourceObject (readonly)

Returns the value of attribute price_source.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def price_source
  @price_source
end

#quantityObject (readonly)

Returns the value of attribute quantity.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def quantity
  @quantity
end

#shipment_estimateObject (readonly)

Returns the value of attribute shipment_estimate.



49143
49144
49145
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49143

def shipment_estimate
  @shipment_estimate
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



49166
49167
49168
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49166

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

#to_hashObject



49170
49171
49172
49173
49174
49175
49176
49177
49178
49179
49180
49181
49182
49183
49184
49185
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49170

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



49162
49163
49164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49162

def to_json
  JSON.dump(to_hash)
end