Class: Io::Flow::V0::Models::PriceFacetBoundary

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ PriceFacetBoundary

Returns a new instance of PriceFacetBoundary.



19372
19373
19374
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19372

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



19370
19371
19372
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19370

def value
  @value
end

Class Method Details

.ALLObject



19392
19393
19394
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19392

def PriceFacetBoundary.ALL
  @@all ||= [PriceFacetBoundary.min, PriceFacetBoundary.max]
end

.apply(value) ⇒ Object

Returns the instance of PriceFacetBoundary for this value, creating a new instance for an unknown value



19377
19378
19379
19380
19381
19382
19383
19384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19377

def PriceFacetBoundary.apply(value)
  if value.instance_of?(PriceFacetBoundary)
    value
  else
    HttpClient::Preconditions.assert_class_or_nil('value', value, String)
    value.nil? ? nil : (from_string(value) || PriceFacetBoundary.new(value))
  end
end

.from_string(value) ⇒ Object

Returns the instance of PriceFacetBoundary for this value, or nil if not found



19387
19388
19389
19390
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19387

def PriceFacetBoundary.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  PriceFacetBoundary.ALL.find { |v| v.value == value }
end

.maxObject



19400
19401
19402
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19400

def PriceFacetBoundary.max
  @@_max ||= PriceFacetBoundary.new('max')
end

.minObject



19396
19397
19398
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19396

def PriceFacetBoundary.min
  @@_min ||= PriceFacetBoundary.new('min')
end

Instance Method Details

#to_hashObject



19404
19405
19406
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19404

def to_hash
  value
end