Package org.drinkless.tdlib
Class TdApi.CheckChatUsername
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.CheckChatUsername
-
- Enclosing class:
- TdApi
public static class TdApi.CheckChatUsername extends TdApi.Function
Checks whether a username can be set for a chat.Returns
CheckChatUsernameResult
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdChat identifier; must be identifier of a supergroup chat, or a channel chat, or a private chat with self, or zero if the chat is being created.static intCONSTRUCTORIdentifier uniquely determining type of the object.StringusernameUsername to be checked.
-
Constructor Summary
Constructors Constructor Description CheckChatUsername()Default constructor for a function, which checks whether a username can be set for a chat.CheckChatUsername(long chatId, String username)Creates a function, which checks whether a username can be set for a chat.
-
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
Chat identifier; must be identifier of a supergroup chat, or a channel chat, or a private chat with self, or zero if the chat is being created.
-
username
public String username
Username to be checked.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CheckChatUsername
public CheckChatUsername()
Default constructor for a function, which checks whether a username can be set for a chat.Returns
CheckChatUsernameResult
-
CheckChatUsername
public CheckChatUsername(long chatId, String username)Creates a function, which checks whether a username can be set for a chat.Returns
CheckChatUsernameResult- Parameters:
chatId- Chat identifier; must be identifier of a supergroup chat, or a channel chat, or a private chat with self, or zero if the chat is being created.username- Username to be checked.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-