Interface FriendsGetRequestsResponse

interface FriendsGetRequestsResponse {
    count: number;
    count_unread: number;
    items: number[];
    last_viewed: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count: number

Total requests number

count_unread: number

Total unread requests number

items: number[]

User ID

last_viewed: number

Friend requests last viewed timestamp

Generated using TypeDoc