# 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.GetCheckResponse do @moduledoc """ The content of the allowed field is mirrored in the HTTP status code. """ @derive [Poison.Encoder] defstruct [ :allowed ] @type t :: %__MODULE__{ :allowed => boolean() } end defimpl Poison.Decoder, for: Ory.Model.GetCheckResponse do def decode(value, _options) do value end end