Class: Io::Flow::V0::Models::OriginalPrices
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OriginalPrices
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Model representing original and max values and currencies.
Instance Attribute Summary collapse
-
#max ⇒ Object
readonly
Returns the value of attribute max.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OriginalPrices
constructor
A new instance of OriginalPrices.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ OriginalPrices
Returns a new instance of OriginalPrices.
42871 42872 42873 42874 42875 42876 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42871 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:value, :max], 'OriginalPrices') @value = (x = opts.delete(:value); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) @max = (x = opts.delete(:max); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) end |
Instance Attribute Details
#max ⇒ Object (readonly)
Returns the value of attribute max.
42869 42870 42871 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42869 def max @max end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
42869 42870 42871 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42869 def value @value end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42882 42883 42884 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42882 def copy(incoming={}) OriginalPrices.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42886 42887 42888 42889 42890 42891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42886 def to_hash { :value => value.to_hash, :max => max.to_hash } end |
#to_json ⇒ Object
42878 42879 42880 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42878 def to_json JSON.dump(to_hash) end |