# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.VerificationErrorCode do @moduledoc """ - VERIFICATION_ERROR_UNSPECIFIED: No error (key is valid) - VERIFICATION_ERROR_INVALID_FORMAT: Credential format is invalid - VERIFICATION_ERROR_EXPIRED: Credential has expired - VERIFICATION_ERROR_REVOKED: Credential has been revoked - VERIFICATION_ERROR_NOT_FOUND: Credential not found in database - VERIFICATION_ERROR_SIGNATURE_INVALID: Cryptographic signature verification failed - VERIFICATION_ERROR_INTERNAL: Internal server error during verification - VERIFICATION_ERROR_IP_NOT_ALLOWED: Request IP is not in the key's allowed CIDR ranges - VERIFICATION_ERROR_RATE_LIMITED: Rate limit quota exhausted (commercial-only) """ @derive Jason.Encoder defstruct [ ] @type t :: %__MODULE__{ } def decode(value) do value end end