Interface MessageChatSetBackground

A new background was set in the chat. Subtype of MessageContent.

interface MessageChatSetBackground {
    @type: "messageChatSetBackground";
    background: ChatBackground;
    old_background_message_id: number;
    only_for_self?: boolean;
}

Properties

@type: "messageChatSetBackground"
background: ChatBackground

The new background.

old_background_message_id: number

Identifier of the message with a previously set same background; 0 if none. Can be an identifier of a deleted message.

only_for_self?: boolean

True, if the background was set only for self.