Interface UpdateBusinessMessagesDeleted

Messages in a business account were deleted; for bots only. Subtype of Update.

interface UpdateBusinessMessagesDeleted {
    @type: "updateBusinessMessagesDeleted";
    chat_id: number;
    connection_id: string;
    message_ids: number[];
}

Properties

@type: "updateBusinessMessagesDeleted"
chat_id: number

Identifier of a chat in the business account in which messages were deleted.

connection_id: string

Unique identifier of the business connection.

message_ids: number[]

Unique message identifiers of the deleted messages.