Class: Io::Flow::V0::Models::ExperiencePriceFacetConversionRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ExperiencePriceFacetConversionRequest

Returns a new instance of ExperiencePriceFacetConversionRequest.



39232
39233
39234
39235
39236
39237
39238
39239
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39232

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:boundary, :value, :base, :local], 'ExperiencePriceFacetConversionRequest')
  @boundary = (x = opts.delete(:boundary); x.is_a?(::Io::Flow::V0::Models::PriceFacetBoundary) ? x : ::Io::Flow::V0::Models::PriceFacetBoundary.apply(x))
  @value = HttpClient::Preconditions.assert_class('value', HttpClient::Helper.to_big_decimal(opts.delete(:value)), BigDecimal)
  @base = HttpClient::Preconditions.assert_class('base', opts.delete(:base), String)
  @local = HttpClient::Preconditions.assert_class('local', opts.delete(:local), String)
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base.



39230
39231
39232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39230

def base
  @base
end

#boundaryObject (readonly)

Returns the value of attribute boundary.



39230
39231
39232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39230

def boundary
  @boundary
end

#localObject (readonly)

Returns the value of attribute local.



39230
39231
39232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39230

def local
  @local
end

#valueObject (readonly)

Returns the value of attribute value.



39230
39231
39232
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39230

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



39245
39246
39247
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39245

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

#to_hashObject



39249
39250
39251
39252
39253
39254
39255
39256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39249

def to_hash
  {
    :boundary => boundary.value,
    :value => value.to_f.to_s,
    :base => base,
    :local => local
  }
end

#to_jsonObject



39241
39242
39243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39241

def to_json
  JSON.dump(to_hash)
end