Interface MessagesPinnedMessage

interface MessagesPinnedMessage {
    attachments: MessagesMessageAttachment[];
    conversation_message_id: number;
    date: number;
    from_id: number;
    fwd_messages: MessagesForeignMessage[];
    id: number;
    peer_id: number;
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

conversation_message_id: number

Unique auto-incremented number for all messages with this peer

date: number

Date when the message has been sent in Unixtime

from_id: number

Message author's ID

fwd_messages: MessagesForeignMessage[]
id: number

Message ID

peer_id: number

Peer ID

text: string

Message text

Generated using TypeDoc