Class: TurnkeyClient::ApiKeyCurve

Inherits:
Object
  • Object
show all
Defined in:
lib/turnkey_client/models/api_key_curve.rb

Constant Summary collapse

P256 =
'API_KEY_CURVE_P256'.freeze
SECP256_K1 =
'API_KEY_CURVE_SECP256K1'.freeze
ED25519 =
'API_KEY_CURVE_ED25519'.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



22
23
24
25
26
# File 'lib/turnkey_client/models/api_key_curve.rb', line 22

def build_from_hash(value)
  constantValues = ApiKeyCurve.constants.select { |c| ApiKeyCurve::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #ApiKeyCurve" if constantValues.empty?
  value
end