MonoCloud Management SDK
    Preparing search index...

    User Session: Represents an authentication session for a user.

    UserSession

    interface UserSession {
        client_ids: string[];
        expires_at: number;
        initiated_at: number;
        last_metadata: UserSessionMetadata;
        last_updated: number;
        session_id: string;
    }
    Index

    Properties

    client_ids: string[]

    The list of client identifiers associated with this session.

    UserSession

    expires_at: number

    Specifies the time at which the session is scheduled to expire (in Epoch).

    UserSession

    initiated_at: number

    Specifies the time at which the session was initiated (in Epoch).

    UserSession

    last_metadata: UserSessionMetadata

    The most recent metadata recorded for this session.

    UserSession

    last_updated: number

    Specifies the time at which the session was last updated (in Epoch).

    UserSession

    session_id: string

    The unique identifier of the user session.

    UserSession