Interface BusinessBotManageBar

Contains information about a business bot that manages the chat.

interface BusinessBotManageBar {
    @type: "businessBotManageBar";
    bot_user_id: number;
    can_bot_reply?: boolean;
    is_bot_paused?: boolean;
    manage_url: string;
}

Properties

@type: "businessBotManageBar"
bot_user_id: number

User identifier of the bot.

can_bot_reply?: boolean

True, if the bot can reply.

is_bot_paused?: boolean

True, if the bot is paused. Use toggleBusinessConnectedBotChatIsPaused to change the value of the field.

manage_url: string

URL to be opened to manage the bot.