Class: Io::Flow::V0::Models::ExperienceCountryStatus

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) ⇒ ExperienceCountryStatus

Returns a new instance of ExperienceCountryStatus.



16095
16096
16097
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16095

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

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



16093
16094
16095
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16093

def value
  @value
end

Class Method Details

.ALLObject



16115
16116
16117
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16115

def ExperienceCountryStatus.ALL
  @@all ||= [ExperienceCountryStatus.enabled, ExperienceCountryStatus.disabled]
end

.apply(value) ⇒ Object

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



16100
16101
16102
16103
16104
16105
16106
16107
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16100

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

.disabledObject



16123
16124
16125
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16123

def ExperienceCountryStatus.disabled
  @@_disabled ||= ExperienceCountryStatus.new('disabled')
end

.enabledObject



16119
16120
16121
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16119

def ExperienceCountryStatus.enabled
  @@_enabled ||= ExperienceCountryStatus.new('enabled')
end

.from_string(value) ⇒ Object

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



16110
16111
16112
16113
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16110

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

Instance Method Details

#to_hashObject



16127
16128
16129
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16127

def to_hash
  value
end