Class: TurnkeyClient::CredentialType

Inherits:
Object
  • Object
show all
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
API_KEY_SECP256_K1 =
'CREDENTIAL_TYPE_API_KEY_SECP256K1'.freeze
EMAIL_AUTH_KEY_P256 =
'CREDENTIAL_TYPE_EMAIL_AUTH_KEY_P256'.freeze
API_KEY_ED25519 =
'CREDENTIAL_TYPE_API_KEY_ED25519'.freeze
OTP_AUTH_KEY_P256 =
'CREDENTIAL_TYPE_OTP_AUTH_KEY_P256'.freeze

Instance Method Summary collapse

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



26
27
28
29
30
# File 'lib/turnkey_client/models/credential_type.rb', line 26

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