lib/ory/model/identity_schema_preset.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.

defmodule Ory.Model.IdentitySchemaPreset do
  @moduledoc """
  
  """

  @derive [Poison.Encoder]
  defstruct [
    :schema,
    :url
  ]

  @type t :: %__MODULE__{
    :schema => map(),
    :url => String.t
  }
end

defimpl Poison.Decoder, for: Ory.Model.IdentitySchemaPreset do
  def decode(value, _options) do
    value
  end
end