Interface GroupCallMessage

Represents a message sent in a group call.

interface GroupCallMessage {
    @type: "groupCallMessage";
    can_be_deleted?: boolean;
    date: number;
    is_from_owner?: boolean;
    message_id: number;
    paid_message_star_count: number;
    sender_id: MessageSender;
    text: FormattedText;
}

Properties

@type: "groupCallMessage"
can_be_deleted?: boolean

True, if the message can be deleted by the current user; for live stories only.

date: number

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

is_from_owner?: boolean

True, if the message is sent by the owner of the call and must be treated as a message of the maximum level; for live stories only.

message_id: number

Unique message identifier within the group call.

paid_message_star_count: number

The number of Telegram Stars that were paid to send the message; for live stories only.

sender_id: MessageSender

Identifier of the sender of the message.

Text of the message. If empty, then the message is a paid reaction in a live story.