Interface UsersOnlineInfo

interface UsersOnlineInfo {
    app_id: number;
    is_mobile: number | boolean;
    is_online: number | boolean;
    last_seen: number;
    status: "recently" | "last_week" | "last_month" | "long_ago" | "not_show";
    visible: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

app_id: number

Application id from which user is currently online or was last seen online

is_mobile: number | boolean

Is user online from desktop app or mobile app

is_online: number | boolean

Whether user is currently online or not

last_seen: number

Last time we saw user being active

status: "recently" | "last_week" | "last_month" | "long_ago" | "not_show"

In case user online is not visible, it indicates approximate timeframe of user online

visible: number | boolean

Whether you can see real online status of user or not

Generated using TypeDoc