Class: Io::Flow::V0::Models::AbandonedOrderSettingStatus
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AbandonedOrderSettingStatus
- 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
- .active ⇒ Object
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of AbandonedOrderSettingStatus for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of AbandonedOrderSettingStatus for this value, or nil if not found.
- .inactive ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ AbandonedOrderSettingStatus
constructor
A new instance of AbandonedOrderSettingStatus.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ AbandonedOrderSettingStatus
12704 12705 12706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12704 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
12702 12703 12704 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12702 def value @value end |
Class Method Details
.active ⇒ Object
12728 12729 12730 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12728 def AbandonedOrderSettingStatus.active @@_active ||= AbandonedOrderSettingStatus.new('active') end |
.ALL ⇒ Object
12724 12725 12726 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12724 def AbandonedOrderSettingStatus.ALL @@all ||= [AbandonedOrderSettingStatus.active, AbandonedOrderSettingStatus.inactive] end |
.apply(value) ⇒ Object
Returns the instance of AbandonedOrderSettingStatus for this value, creating a new instance for an unknown value
12709 12710 12711 12712 12713 12714 12715 12716 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12709 def AbandonedOrderSettingStatus.apply(value) if value.instance_of?(AbandonedOrderSettingStatus) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || AbandonedOrderSettingStatus.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of AbandonedOrderSettingStatus for this value, or nil if not found
12719 12720 12721 12722 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12719 def AbandonedOrderSettingStatus.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) AbandonedOrderSettingStatus.ALL.find { |v| v.value == value } end |
.inactive ⇒ Object
12732 12733 12734 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12732 def AbandonedOrderSettingStatus.inactive @@_inactive ||= AbandonedOrderSettingStatus.new('inactive') end |
Instance Method Details
#to_hash ⇒ Object
12736 12737 12738 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12736 def to_hash value end |