Class: Io::Flow::V0::Models::OrderType
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OrderType
- 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 OrderType for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of OrderType for this value, or nil if not found.
- .replacement ⇒ Object
- .standard ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ OrderType
constructor
A new instance of OrderType.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ OrderType
Returns a new instance of OrderType.
23850 23851 23852 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23850 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
23848 23849 23850 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23848 def value @value end |
Class Method Details
.ALL ⇒ Object
23870 23871 23872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23870 def OrderType.ALL @@all ||= [OrderType.standard, OrderType.replacement] end |
.apply(value) ⇒ Object
Returns the instance of OrderType for this value, creating a new instance for an unknown value
23855 23856 23857 23858 23859 23860 23861 23862 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23855 def OrderType.apply(value) if value.instance_of?(OrderType) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || OrderType.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of OrderType for this value, or nil if not found
23865 23866 23867 23868 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23865 def OrderType.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) OrderType.ALL.find { |v| v.value == value } end |
Instance Method Details
#to_hash ⇒ Object
23882 23883 23884 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23882 def to_hash value end |