Package org.drinkless.tdlib
Class TdApi.ImportMessages
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.ImportMessages
-
- Enclosing class:
- TdApi
public static class TdApi.ImportMessages extends TdApi.Function
Imports messages exported from another app.Returns
Ok
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.InputFile[]attachedFilesFiles used in the imported messages.longchatIdIdentifier of a chat to which the messages will be imported.static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.InputFilemessageFileFile with messages to import.
-
Constructor Summary
Constructors Constructor Description ImportMessages()Default constructor for a function, which imports messages exported from another app.ImportMessages(long chatId, TdApi.InputFile messageFile, TdApi.InputFile[] attachedFiles)Creates a function, which imports messages exported from another app.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
chatId
public long chatId
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 canChangeInfo administrator right.
-
messageFile
public TdApi.InputFile messageFile
File with messages to import. Only inputFileLocal and inputFileGenerated are supported. The file must not be previously uploaded.
-
attachedFiles
public TdApi.InputFile[] attachedFiles
Files used in the imported messages. Only inputFileLocal and inputFileGenerated are supported. The files must not be previously uploaded.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ImportMessages
public ImportMessages()
Default constructor for a function, which imports messages exported from another app.Returns
Ok
-
ImportMessages
public ImportMessages(long chatId, TdApi.InputFile messageFile, TdApi.InputFile[] attachedFiles)Creates a function, which imports messages exported from another app.Returns
Ok- Parameters:
chatId- 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 canChangeInfo administrator right.messageFile- File with messages to import. Only inputFileLocal and inputFileGenerated are supported. The file must not be previously uploaded.attachedFiles- Files used in the imported messages. Only inputFileLocal and inputFileGenerated are supported. The files must not be previously uploaded.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-