Interface UpdateChatIsTranslatable

Translation of chat messages was enabled or disabled. Subtype of Update.

interface UpdateChatIsTranslatable {
    @type: "updateChatIsTranslatable";
    chat_id: number;
    is_translatable?: boolean;
}

Properties

@type: "updateChatIsTranslatable"
chat_id: number

Chat identifier.

is_translatable?: boolean

New value of is_translatable.