Interface GetMessageLocally

Returns information about a message, if it is available without sending network request. Returns a 404 error if message isn't available locally. This is an offline request. Request type for Tdjson#getMessageLocally.

interface GetMessageLocally {
    @type: "getMessageLocally";
    chat_id: number;
    message_id: number;
}

Properties

@type: "getMessageLocally"
chat_id: number

Identifier of the chat the message belongs to.

message_id: number

Identifier of the message to get.