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.



31466
31467
31468
31469
31470
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31466

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.



31464
31465
31466
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31464

def facets
  @facets
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



31476
31477
31478
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31476

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

#to_hashObject



31480
31481
31482
31483
31484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31480

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

#to_jsonObject



31472
31473
31474
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31472

def to_json
  JSON.dump(to_hash)
end