Interface MessageOriginChat

The message was originally sent on behalf of a chat to a group chat.

interface MessageOriginChat {
    author_signature?: string;
    date: number;
    sender_chat: Chat;
    type: "chat";
}

Properties

author_signature?: string

For messages originally sent by an anonymous chat administrator, original message author signature

date: number

Date the message was sent originally in Unix time

sender_chat: Chat

Chat that sent the message originally

type: "chat"

Type of the message origin, always “chat”