View Source Appwrite.Types.SessionList (appwrite v0.2.1)

Represents a list of sessions.

Fields

  • total (non_neg_integer()): Total number of sessions that matched the query.
  • sessions ([Appwrite.Types.Session.t()]): List of sessions.

Summary

Types

t()

@type t() :: %Appwrite.Types.SessionList{
  sessions: [Appwrite.Types.Session.t()],
  total: non_neg_integer()
}