Class: Io::Flow::V0::Models::AllocationDetailComponent

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

Overview

Represents any component that is not VAT or duty, such as item price, rounding, shipping, etc.

Instance Attribute Summary collapse

Attributes inherited from AllocationComponent

#discriminator

Instance Method Summary collapse

Methods inherited from AllocationComponent

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ AllocationDetailComponent

Returns a new instance of AllocationDetailComponent.



20876
20877
20878
20879
20880
20881
20882
20883
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20876

def initialize(incoming={})
  super(:discriminator => AllocationComponent::Types::ALLOCATION_DETAIL_COMPONENT)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:key, :total], 'AllocationDetailComponent')
  @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::OrderPriceDetailComponentKey) ? x : ::Io::Flow::V0::Models::OrderPriceDetailComponentKey.apply(x))
  @total = (x = opts.delete(:total); x.is_a?(::Io::Flow::V0::Models::PriceWithBase) ? x : ::Io::Flow::V0::Models::PriceWithBase.new(x))
  @price = (x = opts.delete(:price); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PriceWithBase) ? x : ::Io::Flow::V0::Models::PriceWithBase.new(x)))
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



20874
20875
20876
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20874

def key
  @key
end

#priceObject (readonly)

Returns the value of attribute price.



20874
20875
20876
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20874

def price
  @price
end

#totalObject (readonly)

Returns the value of attribute total.



20874
20875
20876
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20874

def total
  @total
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20889
20890
20891
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20889

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

#subtype_to_hashObject



20893
20894
20895
20896
20897
20898
20899
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20893

def subtype_to_hash
  {
    :key => key.value,
    :total => total.to_hash,
    :price => price.nil? ? nil : price.to_hash
  }
end

#to_jsonObject



20885
20886
20887
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20885

def to_json
  JSON.dump(to_hash)
end