Interface PushMessageContentText

A text message. Subtype of PushMessageContent.

interface PushMessageContentText {
    @type: "pushMessageContentText";
    is_pinned?: boolean;
    text: string;
}

Properties

Properties

@type: "pushMessageContentText"
is_pinned?: boolean

True, if the message is a pinned message with the specified content.

text: string

Message text.