Package org.drinkless.tdlib
Class TdApi.ChatAdministrator
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ChatAdministrator
-
- Enclosing class:
- TdApi
public static class TdApi.ChatAdministrator extends TdApi.Object
Contains information about a chat administrator.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringcustomTitleCustom title of the administrator.booleanisOwnerTrue, if the user is the owner of the chat.longuserIdUser identifier of the administrator.
-
Constructor Summary
Constructors Constructor Description ChatAdministrator()Contains information about a chat administrator.ChatAdministrator(long userId, String customTitle, boolean isOwner)Contains information about a chat administrator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
userId
public long userId
User identifier of the administrator.
-
customTitle
public String customTitle
Custom title of the administrator.
-
isOwner
public boolean isOwner
True, if the user is the owner of the chat.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ChatAdministrator
public ChatAdministrator()
Contains information about a chat administrator.
-
ChatAdministrator
public ChatAdministrator(long userId, String customTitle, boolean isOwner)Contains information about a chat administrator.- Parameters:
userId- User identifier of the administrator.customTitle- Custom title of the administrator.isOwner- True, if the user is the owner of the chat.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-