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.



26270
26271
26272
26273
26274
26275
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26270

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.



26268
26269
26270
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26268

def max
  @max
end

#valueObject (readonly)

Returns the value of attribute value.



26268
26269
26270
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26268

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26281
26282
26283
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26281

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

#to_hashObject



26285
26286
26287
26288
26289
26290
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26285

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

#to_jsonObject



26277
26278
26279
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26277

def to_json
  JSON.dump(to_hash)
end