Class: Verizon::CallbackService

Inherits:
Object
  • Object
show all
Defined in:
lib/verizon/models/callback_service.rb

Overview

Callback type. Must be ‘Fota’ for Software Management Services API.

Constant Summary collapse

CALLBACK_SERVICE =
[
  # TODO: Write general description for FOTA
  FOTA = 'Fota'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = FOTA) ⇒ Object



20
21
22
23
24
# File 'lib/verizon/models/callback_service.rb', line 20

def self.from_value(value, default_value = FOTA)
  return default_value if value.nil?

  default_value
end

.validate(value) ⇒ Object



14
15
16
17
18
# File 'lib/verizon/models/callback_service.rb', line 14

def self.validate(value)
  return false if value.nil?

  CALLBACK_SERVICE.include?(value)
end