Class: FdxV660Api::AvailabilityStatus
- Inherits:
-
Object
- Object
- FdxV660Api::AvailabilityStatus
- Defined in:
- lib/fdx_v660_api/models/availability_status.rb
Overview
Statuses for reporting API availability
Constant Summary collapse
- AVAILABILITY_STATUS =
[ # TODO: Write general description for ALIVE ALIVE = 'ALIVE'.freeze, # TODO: Write general description for PARTIAL PARTIAL = 'PARTIAL'.freeze, # TODO: Write general description for MAINTENANCE MAINTENANCE = 'MAINTENANCE'.freeze, # TODO: Write general description for DOWN DOWN = 'DOWN'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = ALIVE) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fdx_v660_api/models/availability_status.rb', line 29 def self.from_value(value, default_value = ALIVE) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'alive' then ALIVE when 'partial' then PARTIAL when 'maintenance' then MAINTENANCE when 'down' then DOWN else default_value end end |
.validate(value) ⇒ Object
23 24 25 26 27 |
# File 'lib/fdx_v660_api/models/availability_status.rb', line 23 def self.validate(value) return false if value.nil? true end |