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.



23126
23127
23128
23129
23130
23131
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23126

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.



23124
23125
23126
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23124

def max
  @max
end

#valueObject (readonly)

Returns the value of attribute value.



23124
23125
23126
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23124

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



23137
23138
23139
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23137

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

#to_hashObject



23141
23142
23143
23144
23145
23146
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23141

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

#to_jsonObject



23133
23134
23135
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23133

def to_json
  JSON.dump(to_hash)
end