Interface MessagesMarkAsAnsweredConversationParams

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

Indexable

[key: string]: any

Properties

answered?: number | boolean

'1' - to mark as answered, '0' - to remove the mark

group_id?: number

Group ID (for group messages with group access token)

peer_id: number

ID of conversation to mark as important.

Generated using TypeDoc