Package org.drinkless.tdlib
Class TdApi.ReportChat
- Enclosing class:
- TdApi
Reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.canBeReported.
Returns ReportChatResult
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongChat identifier.static final intIdentifier uniquely determining type of the object.long[]Identifiers of reported messages.byte[]Option identifier chosen by the user; leave empty for the initial request.Additional report details if asked by the server; 0-1024 characters; leave empty for the initial request. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which reports a chat to the Telegram moderators.ReportChat(long chatId, byte[] optionId, long[] messageIds, String text) Creates a function, which reports a chat to the Telegram moderators. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier. -
optionId
public byte[] optionIdOption identifier chosen by the user; leave empty for the initial request. -
messageIds
public long[] messageIdsIdentifiers of reported messages. Use messageProperties.canReportChat to check whether the message can be reported. -
text
Additional report details if asked by the server; 0-1024 characters; leave empty for the initial request. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
ReportChat
public ReportChat()Default constructor for a function, which reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.canBeReported.Returns
ReportChatResult -
ReportChat
Creates a function, which reports a chat to the Telegram moderators. A chat can be reported only from the chat action bar, or if chat.canBeReported.Returns
ReportChatResult- Parameters:
chatId- Chat identifier.optionId- Option identifier chosen by the user; leave empty for the initial request.messageIds- Identifiers of reported messages. Use messageProperties.canReportChat to check whether the message can be reported.text- Additional report details if asked by the server; 0-1024 characters; leave empty for the initial request.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-