Class: TurnkeyClient::CredentialType
- Inherits:
-
Object
- Object
- TurnkeyClient::CredentialType
- Defined in:
- lib/turnkey_client/models/credential_type.rb
Constant Summary collapse
- WEBAUTHN_AUTHENTICATOR =
'CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR'.freeze
- API_KEY_P256 =
'CREDENTIAL_TYPE_API_KEY_P256'.freeze
- RECOVER_USER_KEY_P256 =
'CREDENTIAL_TYPE_RECOVER_USER_KEY_P256'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
23 24 25 26 27 |
# File 'lib/turnkey_client/models/credential_type.rb', line 23 def build_from_hash(value) constantValues = CredentialType.constants.select { |c| CredentialType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #CredentialType" if constantValues.empty? value end |