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.



51665
51666
51667
51668
51669
51670
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51665

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.



51663
51664
51665
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51663

def max
  @max
end

#valueObject (readonly)

Returns the value of attribute value.



51663
51664
51665
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51663

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



51676
51677
51678
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51676

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

#to_hashObject



51680
51681
51682
51683
51684
51685
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51680

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

#to_jsonObject



51672
51673
51674
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 51672

def to_json
  JSON.dump(to_hash)
end