Class: Io::Flow::V0::Models::PriceWithBaseAndDetails
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceWithBaseAndDetails
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PriceWithBaseAndDetails
constructor
A new instance of PriceWithBaseAndDetails.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PriceWithBaseAndDetails
Returns a new instance of PriceWithBaseAndDetails.
39983 39984 39985 39986 39987 39988 39989 39990 39991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39983 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:currency, :amount, :label], 'PriceWithBaseAndDetails') @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String) @amount = HttpClient::Preconditions.assert_class('amount', opts.delete(:amount), Numeric) @label = HttpClient::Preconditions.assert_class('label', opts.delete(:label), String) @base = (x = opts.delete(:base); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))) @details = (x = opts.delete(:details); x.nil? ? nil : HttpClient::Preconditions.assert_class('details', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::DeliveryOptionCostDetail) ? x : ::Io::Flow::V0::Models::DeliveryOptionCostDetail.new(x)) }) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
39981 39982 39983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39981 def amount @amount end |
#base ⇒ Object (readonly)
Returns the value of attribute base.
39981 39982 39983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39981 def base @base end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
39981 39982 39983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39981 def currency @currency end |
#details ⇒ Object (readonly)
Returns the value of attribute details.
39981 39982 39983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39981 def details @details end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
39981 39982 39983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39981 def label @label end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39997 39998 39999 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39997 def copy(incoming={}) PriceWithBaseAndDetails.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
40001 40002 40003 40004 40005 40006 40007 40008 40009 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40001 def to_hash { :currency => currency, :amount => amount, :label => label, :base => base.nil? ? nil : base.to_hash, :details => details.nil? ? nil : details.map { |o| o.to_hash } } end |
#to_json ⇒ Object
39993 39994 39995 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39993 def to_json JSON.dump(to_hash) end |