Class: Io::Flow::V0::Models::ExperiencePriceFacetConversionResponse

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

Overview

Conversion of a price from the organization’s base currency into a local currency, using display rules suitable for price facets in search.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ExperiencePriceFacetConversionResponse

Returns a new instance of ExperiencePriceFacetConversionResponse.



31992
31993
31994
31995
31996
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31992

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:facets], 'ExperiencePriceFacetConversionResponse')
  @facets = HttpClient::Preconditions.assert_class('facets', opts.delete(:facets), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExperiencePriceFacetConversion) ? x : ::Io::Flow::V0::Models::ExperiencePriceFacetConversion.new(x)) }
end

Instance Attribute Details

#facetsObject (readonly)

Returns the value of attribute facets.



31990
31991
31992
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31990

def facets
  @facets
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32002
32003
32004
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32002

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

#to_hashObject



32006
32007
32008
32009
32010
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32006

def to_hash
  {
    :facets => facets.map { |o| o.to_hash }
  }
end

#to_jsonObject



31998
31999
32000
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31998

def to_json
  JSON.dump(to_hash)
end