Interface ToggleBotCanManageEmojiStatus

Toggles whether the bot can manage emoji status of the current user. Request type for Tdjson#toggleBotCanManageEmojiStatus.

interface ToggleBotCanManageEmojiStatus {
    @type: "toggleBotCanManageEmojiStatus";
    bot_user_id: number;
    can_manage_emoji_status?: boolean;
}

Properties

@type: "toggleBotCanManageEmojiStatus"
bot_user_id: number

User identifier of the bot.

can_manage_emoji_status?: boolean

Pass true if the bot is allowed to change emoji status of the user; pass false otherwise.