Interface ForwardSource

Contains information about the last message from which a new message was forwarded last time.

interface ForwardSource {
    @type: "forwardSource";
    chat_id: number;
    date: number;
    is_outgoing?: boolean;
    message_id: number;
    sender_id: MessageSender;
    sender_name: string;
}

Properties

@type: "forwardSource"
chat_id: number

Identifier of the chat to which the message that was forwarded belonged; may be 0 if unknown.

date: number

Point in time (Unix timestamp) when the message is sent; 0 if unknown.

is_outgoing?: boolean

True, if the message that was forwarded is outgoing; always false if sender is unknown.

message_id: number

Identifier of the message; may be 0 if unknown.

sender_id: MessageSender

Identifier of the sender of the message; may be null if unknown or the new message was forwarded not to Saved Messages.

sender_name: string

Name of the sender of the message if the sender is hidden by their privacy settings.