Class: Io::Flow::V0::Models::OriginalPrices

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Model representing original and max values and currencies.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OriginalPrices

Returns a new instance of OriginalPrices.



55872
55873
55874
55875
55876
55877
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55872

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

#maxObject (readonly)

Returns the value of attribute max.



55870
55871
55872
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55870

def max
  @max
end

#valueObject (readonly)

Returns the value of attribute value.



55870
55871
55872
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55870

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



55883
55884
55885
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55883

def copy(incoming={})
  OriginalPrices.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



55887
55888
55889
55890
55891
55892
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55887

def to_hash
  {
    :value => value.to_hash,
    :max => max.to_hash
  }
end

#to_jsonObject



55879
55880
55881
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 55879

def to_json
  JSON.dump(to_hash)
end