Interface FriendsAddParams

interface FriendsAddParams {
    follow?: number | boolean;
    text?: string;
    user_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

follow?: number | boolean

'1' to pass an incoming request to followers list.

text?: string

Text of the message (up to 500 characters) for the friend request, if any.

user_id?: number

ID of the user whose friend request will be approved or to whom a friend request will be sent.

Generated using TypeDoc