Interface MessageOriginUser

The message was originally sent by a known user.

interface MessageOriginUser {
    date: number;
    sender_user: User;
    type: "user";
}

Properties

Properties

date: number

Date the message was sent originally in Unix time

sender_user: User

User that sent the message originally

type: "user"

Type of the message origin, always “user”