Interface NotificationsGetParams

interface NotificationsGetParams {
    count?: number;
    end_time?: number;
    filters?: "wall" | "friends" | "comments" | "mentions" | "likes" | "followers" | "reposted" | ("wall" | "friends" | "comments" | "mentions" | "likes" | "followers" | "reposted")[];
    start_from?: string;
    start_time?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

Number of notifications to return.

end_time?: number

Latest timestamp (in Unix time) of a notification to return. By default, the current time.

filters?: "wall" | "friends" | "comments" | "mentions" | "likes" | "followers" | "reposted" | ("wall" | "friends" | "comments" | "mentions" | "likes" | "followers" | "reposted")[]
start_from?: string
start_time?: number

Earliest timestamp (in Unix time) of a notification to return. By default, 24 hours ago.

Generated using TypeDoc