# 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.CredentialSupportedDraft00 do
@moduledoc """
Includes information about the supported verifiable credentials.
"""
@derive Jason.Encoder
defstruct [
:cryptographic_binding_methods_supported,
:cryptographic_suites_supported,
:format,
:types
]
@type t :: %__MODULE__{
:cryptographic_binding_methods_supported => [String.t] | nil,
:cryptographic_suites_supported => [String.t] | nil,
:format => String.t | nil,
:types => [String.t] | nil
}
def decode(value) do
value
end
end