Class: TurnkeyClient::Curve
- Inherits:
-
Object
- Object
- TurnkeyClient::Curve
- Defined in:
- lib/turnkey_client/models/curve.rb
Constant Summary collapse
- SECP256_K1 =
'CURVE_SECP256K1'.freeze
- ED25519 =
'CURVE_ED25519'.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
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 |