Interface ImportMessages

Imports messages exported from another app. Request type for Tdjson#importMessages.

interface ImportMessages {
    @type: "importMessages";
    attached_files: InputFile[];
    chat_id: number;
    message_file: InputFile;
}

Properties

@type: "importMessages"
attached_files: InputFile[]

Files used in the imported messages. Only inputFileLocal and inputFileGenerated are supported. The files must not be previously uploaded.

chat_id: number

Identifier of a chat to which the messages will be imported. It must be an identifier of a private chat with a mutual contact or an identifier of a supergroup chat with can_change_info member right.

message_file: InputFile

File with messages to import. Only inputFileLocal and inputFileGenerated are supported. The file must not be previously uploaded.