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.



32691
32692
32693
32694
32695
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32691

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.



32689
32690
32691
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32689

def facets
  @facets
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32701
32702
32703
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32701

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

#to_hashObject



32705
32706
32707
32708
32709
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32705

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

#to_jsonObject



32697
32698
32699
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32697

def to_json
  JSON.dump(to_hash)
end