Class: Io::Flow::V0::Models::PriceFacetBoundary
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PriceFacetBoundary
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of PriceFacetBoundary for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of PriceFacetBoundary for this value, or nil if not found.
- .max ⇒ Object
- .min ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ PriceFacetBoundary
constructor
A new instance of PriceFacetBoundary.
- #to_hash ⇒ Object
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
#value ⇒ Object (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
.ALL ⇒ Object
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 |
.max ⇒ Object
19400 19401 19402 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19400 def PriceFacetBoundary.max @@_max ||= PriceFacetBoundary.new('max') end |
.min ⇒ Object
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_hash ⇒ Object
19404 19405 19406 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19404 def to_hash value end |