Interface MessagesMarkAsImportantConversationParams

interface MessagesMarkAsImportantConversationParams {
    group_id?: number;
    important?: number | boolean;
    peer_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

group_id?: number

Group ID (for group messages with group access token)

important?: number | boolean

'1' - to add a star (mark as important), '0' - to remove the star

peer_id: number

ID of conversation to mark as important.

Generated using TypeDoc