Class: Onfido::ApplicantConsentName
- Inherits:
-
Object
- Object
- Onfido::ApplicantConsentName
- Defined in:
- lib/onfido/models/applicant_consent_name.rb
Constant Summary collapse
- PRIVACY_NOTICES_READ =
"privacy_notices_read".freeze
- SSN_VERIFICATION =
"ssn_verification".freeze
- PHONE_NUMBER_VERIFICATION =
"phone_number_verification".freeze
- UNKNOWN_DEFAULT_OPEN_API =
"unknown_default_open_api".freeze
Class Method Summary collapse
- .all_vars ⇒ Object
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.all_vars ⇒ Object
23 24 25 |
# File 'lib/onfido/models/applicant_consent_name.rb', line 23 def self.all_vars @all_vars ||= [PRIVACY_NOTICES_READ, SSN_VERIFICATION, PHONE_NUMBER_VERIFICATION, UNKNOWN_DEFAULT_OPEN_API].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
30 31 32 |
# File 'lib/onfido/models/applicant_consent_name.rb', line 30 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
37 38 39 40 |
# File 'lib/onfido/models/applicant_consent_name.rb', line 37 def build_from_hash(value) return value if ApplicantConsentName.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #ApplicantConsentName" end |