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.
18241 18242 18243 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18241 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
18239 18240 18241 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18239 def value @value end |
Class Method Details
.ALL ⇒ Object
18261 18262 18263 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18261 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
18246 18247 18248 18249 18250 18251 18252 18253 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18246 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
18256 18257 18258 18259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18256 def PriceFacetBoundary.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) PriceFacetBoundary.ALL.find { |v| v.value == value } end |
.max ⇒ Object
18269 18270 18271 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18269 def PriceFacetBoundary.max @@_max ||= PriceFacetBoundary.new('max') end |
.min ⇒ Object
18265 18266 18267 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18265 def PriceFacetBoundary.min @@_min ||= PriceFacetBoundary.new('min') end |
Instance Method Details
#to_hash ⇒ Object
18273 18274 18275 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18273 def to_hash value end |