lib/ory/model/managed_identity_schema_validation_result.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.ManagedIdentitySchemaValidationResult do
  @moduledoc """
  Ory Identity Schema Validation Result
  """

  @derive [Poison.Encoder]
  defstruct [
    :message,
    :valid
  ]

  @type t :: %__MODULE__{
    :message => String.t | nil,
    :valid => boolean() | nil
  }
end

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