Class: Io::Flow::V0::Models::AllocationDetailComponent
- Inherits:
-
AllocationComponent
- Object
- AllocationComponent
- Io::Flow::V0::Models::AllocationDetailComponent
- 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
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Attributes inherited from AllocationComponent
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ AllocationDetailComponent
constructor
A new instance of AllocationDetailComponent.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from AllocationComponent
Constructor Details
#initialize(incoming = {}) ⇒ AllocationDetailComponent
Returns a new instance of AllocationDetailComponent.
12386 12387 12388 12389 12390 12391 12392 12393 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12386 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
#key ⇒ Object (readonly)
Returns the value of attribute key.
12384 12385 12386 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12384 def key @key end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
12384 12385 12386 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12384 def price @price end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
12384 12385 12386 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12384 def total @total end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
12399 12400 12401 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12399 def copy(incoming={}) AllocationDetailComponent.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
12403 12404 12405 12406 12407 12408 12409 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12403 def subtype_to_hash { :key => key.value, :total => total.to_hash, :price => price.nil? ? nil : price.to_hash } end |
#to_json ⇒ Object
12395 12396 12397 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12395 def to_json JSON.dump(to_hash) end |