Interface SetChatEmojiStatus

Changes the emoji status of a chat. Use chatBoostLevelFeatures.can_set_emoji_status to check whether an emoji status can be set. Requires can_change_info administrator right. Request type for Tdjson#setChatEmojiStatus.

interface SetChatEmojiStatus {
    @type: "setChatEmojiStatus";
    chat_id: number;
    emoji_status: EmojiStatus;
}

Properties

@type: "setChatEmojiStatus"
chat_id: number

Chat identifier.

emoji_status: EmojiStatus

New emoji status; pass null to remove emoji status.