# NOTE: This file is auto generated by OpenAPI Generator 6.6.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 [Poison.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
}
end
defimpl Poison.Decoder, for: Ory.Model.CredentialSupportedDraft00 do
def decode(value, _options) do
value
end
end