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.



39266
39267
39268
39269
39270
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39266

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.



39264
39265
39266
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39264

def facets
  @facets
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



39276
39277
39278
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39276

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

#to_hashObject



39280
39281
39282
39283
39284
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39280

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

#to_jsonObject



39272
39273
39274
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39272

def to_json
  JSON.dump(to_hash)
end