Package org.drinkless.tdlib
Class TdApi.CreateNewSupergroupChat
- Enclosing class:
- TdApi
Creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat.
Returns Chat
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.Chat description; 0-255 characters.booleanPass true to create a supergroup for importing messages using importMessages.booleanPass true to create a channel chat; ignored if a forum is created.booleanPass true to create a forum supergroup chat.Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat.intMessage auto-delete time value, in seconds; must be from 0 up to 365 * 86400 and be divisible by 86400.Title of the new chat; 1-128 characters. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate.CreateNewSupergroupChat(String title, boolean isForum, boolean isChannel, String description, TdApi.ChatLocation location, int messageAutoDeleteTime, boolean forImport) Creates a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. -
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
-
title
Title of the new chat; 1-128 characters. -
isForum
public boolean isForumPass true to create a forum supergroup chat. -
isChannel
public boolean isChannelPass true to create a channel chat; ignored if a forum is created. -
description
Chat description; 0-255 characters. -
location
Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat. -
messageAutoDeleteTime
public int messageAutoDeleteTimeMessage auto-delete time value, in seconds; must be from 0 up to 365 * 86400 and be divisible by 86400. If 0, then messages aren't deleted automatically. -
forImport
public boolean forImportPass true to create a supergroup for importing messages using importMessages. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
CreateNewSupergroupChat
public CreateNewSupergroupChat()Default constructor for a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat.Returns
Chat -
CreateNewSupergroupChat
public CreateNewSupergroupChat(String title, boolean isForum, boolean isChannel, String description, TdApi.ChatLocation location, int messageAutoDeleteTime, boolean forImport) Creates a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat.Returns
Chat- Parameters:
title- Title of the new chat; 1-128 characters.isForum- Pass true to create a forum supergroup chat.isChannel- Pass true to create a channel chat; ignored if a forum is created.description- Chat description; 0-255 characters.location- Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat.messageAutoDeleteTime- Message auto-delete time value, in seconds; must be from 0 up to 365 * 86400 and be divisible by 86400. If 0, then messages aren't deleted automatically.forImport- Pass true to create a supergroup for importing messages using importMessages.
-
-
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
-