# 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.SessionCachingQuota do @moduledoc """ Session Caching Quota """ @derive [Poison.Encoder] defstruct [ :can_use ] @type t :: %__MODULE__{ :can_use => boolean() | nil } end defimpl Poison.Decoder, for: Ory.Model.SessionCachingQuota do def decode(value, _options) do value end end