Class: NewStoreApi::ChannelType1Enum
- Inherits:
-
Object
- Object
- NewStoreApi::ChannelType1Enum
- Defined in:
- lib/new_store_api/models/channel_type1_enum.rb
Overview
ChannelType1.
Constant Summary collapse
- CHANNEL_TYPE1_ENUM =
[ # TODO: Write general description for WEB WEB = 'web'.freeze, # TODO: Write general description for MOBILE MOBILE = 'mobile'.freeze, # TODO: Write general description for STORE STORE = 'store'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = WEB) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/new_store_api/models/channel_type1_enum.rb', line 26 def self.from_value(value, default_value = WEB) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'web' then WEB when 'mobile' then MOBILE when 'store' then STORE else default_value end end |
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/new_store_api/models/channel_type1_enum.rb', line 20 def self.validate(value) return false if value.nil? CHANNEL_TYPE1_ENUM.include?(value) end |