Interface StopBusinessPoll

Stops a poll sent on behalf of a business account; for bots only. Request type for Tdjson#stopBusinessPoll.

interface StopBusinessPoll {
    @type: "stopBusinessPoll";
    business_connection_id: string;
    chat_id: number;
    message_id: number;
    reply_markup: ReplyMarkup;
}

Properties

@type: "stopBusinessPoll"
business_connection_id: string

Unique identifier of business connection on behalf of which the message with the poll was sent.

chat_id: number

The chat the message belongs to.

message_id: number

Identifier of the message containing the poll.

reply_markup: ReplyMarkup

The new message reply markup; pass null if none.