interface GatewayPresenceUpdateData {
    activities: GatewayActivityUpdateData[];
    afk: boolean;
    since: null | number;
    status: PresenceUpdateStatus;
}

Properties

The user's activities

afk: boolean

Whether or not the client is afk

since: null | number

Unix time (in milliseconds) of when the client went idle, or null if the client is not idle

The user's new status