Class: Io::Flow::V0::Models::PriceDetail
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceDetail
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents a top-level price detail, e.g. ‘Subtotal’ or ‘VAT’.
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#components ⇒ Object
readonly
Returns the value of attribute components.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PriceDetail
constructor
A new instance of PriceDetail.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PriceDetail
Returns a new instance of PriceDetail.
39650 39651 39652 39653 39654 39655 39656 39657 39658 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39650 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:key, :components, :amount, :label], 'PriceDetail') @key = (x = opts.delete(:key); x.is_a?(::Io::Flow::V0::Models::PriceDetailKey) ? x : ::Io::Flow::V0::Models::PriceDetailKey.apply(x)) @components = HttpClient::Preconditions.assert_class('components', opts.delete(:components), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::PriceDetailComponent) ? x : ::Io::Flow::V0::Models::PriceDetailComponent.new(x)) } @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal) @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String) @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
39648 39649 39650 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39648 def amount @amount end |
#components ⇒ Object (readonly)
Returns the value of attribute components.
39648 39649 39650 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39648 def components @components end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
39648 39649 39650 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39648 def key @key end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
39648 39649 39650 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39648 def label @label end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
39648 39649 39650 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39648 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39664 39665 39666 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39664 def copy(incoming={}) PriceDetail.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
39668 39669 39670 39671 39672 39673 39674 39675 39676 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39668 def to_hash { :key => key.value, :components => components.map { |o| o.to_hash }, :amount => amount.to_f.to_s, :label => label, :name => name } end |
#to_json ⇒ Object
39660 39661 39662 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39660 def to_json JSON.dump(to_hash) end |