Interface SharedChat

Contains information about a chat shared with a bot.

interface SharedChat {
    @type: "sharedChat";
    chat_id: number;
    photo: Photo;
    title: string;
    username: string;
}

Properties

@type: "sharedChat"
chat_id: number

Chat identifier.

photo: Photo

Photo of the chat; for bots only; may be null.

title: string

Title of the chat; for bots only.

username: string

Username of the chat; for bots only.