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.



12370
12371
12372
12373
12374
12375
12376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12370

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))
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



12368
12369
12370
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12368

def key
  @key
end

#totalObject (readonly)

Returns the value of attribute total.



12368
12369
12370
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12368

def total
  @total
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



12382
12383
12384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12382

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

#subtype_to_hashObject



12386
12387
12388
12389
12390
12391
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12386

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

#to_jsonObject



12378
12379
12380
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12378

def to_json
  JSON.dump(to_hash)
end