Class: TurnkeyClient::Curve

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

Constant Summary collapse

SECP256_K1 =
'CURVE_SECP256K1'.freeze
ED25519 =
'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/curve.rb', line 22

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