Package org.drinkless.tdlib
Class TdApi.BasicGroupFullInfo
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.BasicGroupFullInfo
-
- Enclosing class:
- TdApi
public static class TdApi.BasicGroupFullInfo extends TdApi.Object
Contains full information about a basic group.
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.BotCommands[]botCommandsList of commands of bots in the group.static intCONSTRUCTORIdentifier uniquely determining type of the object.longcreatorUserIdUser identifier of the creator of the group; 0 if unknown.StringdescriptionGroup description.TdApi.ChatInviteLinkinviteLinkPrimary invite link for this group; may be null.TdApi.ChatMember[]membersGroup members.TdApi.ChatPhotophotoChat photo; may be null.
-
Constructor Summary
Constructors Constructor Description BasicGroupFullInfo()Contains full information about a basic group.BasicGroupFullInfo(TdApi.ChatPhoto photo, String description, long creatorUserId, TdApi.ChatMember[] members, TdApi.ChatInviteLink inviteLink, TdApi.BotCommands[] botCommands)Contains full information about a basic group.
-
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
-
photo
public TdApi.ChatPhoto photo
Chat photo; may be null.
-
description
public String description
Group description. Updated only after the basic group is opened.
-
creatorUserId
public long creatorUserId
User identifier of the creator of the group; 0 if unknown.
-
members
public TdApi.ChatMember[] members
Group members.
-
inviteLink
public TdApi.ChatInviteLink inviteLink
Primary invite link for this group; may be null. For chat administrators with canInviteUsers right only. Updated only after the basic group is opened.
-
botCommands
public TdApi.BotCommands[] botCommands
List of commands of bots in the group.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BasicGroupFullInfo
public BasicGroupFullInfo()
Contains full information about a basic group.
-
BasicGroupFullInfo
public BasicGroupFullInfo(TdApi.ChatPhoto photo, String description, long creatorUserId, TdApi.ChatMember[] members, TdApi.ChatInviteLink inviteLink, TdApi.BotCommands[] botCommands)
Contains full information about a basic group.- Parameters:
photo- Chat photo; may be null.description- Group description. Updated only after the basic group is opened.creatorUserId- User identifier of the creator of the group; 0 if unknown.members- Group members.inviteLink- Primary invite link for this group; may be null. For chat administrators with canInviteUsers right only. Updated only after the basic group is opened.botCommands- List of commands of bots in the group.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-