# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule Ory.Model.IdentitySchemaValidationResult do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :message, :valid ] @type t :: %__MODULE__{ :message => String.t | nil, :valid => boolean() | nil } end defimpl Poison.Decoder, for: Ory.Model.IdentitySchemaValidationResult do def decode(value, _options) do value end end