# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule Ory.Model.ManageSessionsResponse do @moduledoc """ Response body for the bulk session management endpoint. Reports how many rows the call processed and, for the wildcard variant, whether the network still has matching rows left. Explicit-IDs requests always return `more: false`. Wildcard callers drain the network by re-issuing the same request while `more` is `true`. """ @derive Jason.Encoder defstruct [ :more, :processed ] @type t :: %__MODULE__{ :more => boolean() | nil, :processed => integer() | nil } def decode(value) do value end end