Interface MessagePosition

Contains information about a message in a specific position.

interface MessagePosition {
    @type: "messagePosition";
    date: number;
    message_id: number;
    position: number;
}

Properties

@type: "messagePosition"
date: number

Point in time (Unix timestamp) when the message was sent.

message_id: number

Message identifier.

position: number

0-based message position in the full list of suitable messages.