AboutUser: {
    globalAccessLevel?: AboutUser.globalAccessLevel;
    sessionActive?: boolean;
    sessionCreateTime?: number;
    sessionCurrentTime?: number;
    sessionHardExpiryTime?: number;
    sessionId?: string;
    sessionIdleExpiryTime?: number;
    username?: string;
}

Type declaration

  • Optional globalAccessLevel?: AboutUser.globalAccessLevel

    The global access level of the User. The allowed values and their meaning are:

    "admin" - Full administrative access.
    "none" - No access.
    "read-only" - Read only access.
    "read-write" - Read and write access.
    
  • Optional sessionActive?: boolean

    Indicates whether a session is active for this request. Available since 2.24.

  • Optional sessionCreateTime?: number

    The timestamp of when the session was created. This attribute may not be returned in a GET. This value represents the number of seconds since 1970-01-01 00:00:00 UTC (Unix time). Available since 2.21.

  • Optional sessionCurrentTime?: number

    The current server timestamp. This is provided as a reference point for the other timestamps provided. This attribute may not be returned in a GET. This value represents the number of seconds since 1970-01-01 00:00:00 UTC (Unix time). Available since 2.21.

  • Optional sessionHardExpiryTime?: number

    The hard expiry time for the session. After this time the session will be invalid, regardless of activity. This attribute may not be returned in a GET. This value represents the number of seconds since 1970-01-01 00:00:00 UTC (Unix time). Available since 2.21.

  • Optional sessionId?: string

    An identifier for the session to differentiate this session from other sessions for the same user. This value is not guaranteed to be unique between active sessions for different users. This attribute may not be returned in a GET. Available since 2.21.

  • Optional sessionIdleExpiryTime?: number

    The session idle expiry time. After this time the session will be invalid if there has been no activity. This attribute may not be returned in a GET. This value represents the number of seconds since 1970-01-01 00:00:00 UTC (Unix time). Available since 2.21.

  • Optional username?: string

    The username of the User. Available since 2.21.