Class: ShellEv::NearbyLocationsAuthorizationMethodsEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/shell_ev/models/nearby_locations_authorization_methods_enum.rb

Overview

nearbyLocationsAuthorizationMethods.

Constant Summary collapse

NEARBY_LOCATIONS_AUTHORIZATION_METHODS_ENUM =
[
  # TODO: Write general description for NEWMOTIONAPP
  NEWMOTIONAPP = 'NewMotionApp'.freeze,

  # TODO: Write general description for RFIDTOKEN
  RFIDTOKEN = 'RFIDToken'.freeze,

  # TODO: Write general description for PNC
  PNC = 'PnC'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.validate(value) ⇒ Object



20
21
22
23
24
# File 'lib/shell_ev/models/nearby_locations_authorization_methods_enum.rb', line 20

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

  NEARBY_LOCATIONS_AUTHORIZATION_METHODS_ENUM.include?(value)
end