# 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.ManageSessionsBody do @moduledoc """ Body for the bulk session management endpoint. Exactly one of `identities` or `sessions` must be provided. To operate on every session in the network, pass `identities: [\"*\"]` — the wildcard must appear alone, never mixed with explicit IDs. """ @derive Jason.Encoder defstruct [ :action, :identities, :sessions ] @type t :: %__MODULE__{ :action => String.t, :identities => [String.t] | nil, :sessions => [String.t] | nil } def decode(value) do value end end