Appwrite.Types.Client.RealtimeResponseAuthenticated (appwrite v1.0.0)

View Source

Data payload for a Realtime "response" (authentication result) message.

Received when the server processes a client authentication request. The success flag indicates whether the session was accepted.

Fields

  • to (String.t()) — The session ID the authentication applies to.
  • success (boolean()) — Whether the authentication succeeded.
  • user (map()) — Partial user object returned by the server on successful authentication. Shape matches the Appwrite user resource.

Summary

Types

t()

@type t() :: %Appwrite.Types.Client.RealtimeResponseAuthenticated{
  success: boolean(),
  to: String.t(),
  user: map()
}