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

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



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