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.
-
#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.
11558 11559 11560 11561 11562 11563 11564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11558 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
#key ⇒ Object (readonly)
Returns the value of attribute key.
11556 11557 11558 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11556 def key @key end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
11556 11557 11558 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11556 def total @total end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
11570 11571 11572 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11570 def copy(incoming={}) AllocationDetailComponent.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
11574 11575 11576 11577 11578 11579 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11574 def subtype_to_hash { :key => key.value, :total => total.to_hash } end |
#to_json ⇒ Object
11566 11567 11568 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11566 def to_json JSON.dump(to_hash) end |