Package org.drinkless.tdlib
Class TdApi.CreateNewSupergroupChat
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.CreateNewSupergroupChat
-
- Enclosing class:
- TdApi
public static class TdApi.CreateNewSupergroupChat extends TdApi.Function
Creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat.Returns
Chat
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.StringdescriptionChat description; 0-255 characters.booleanforImportTrue, if the supergroup is created for importing messages using importMessage.booleanisChannelTrue, if a channel chat needs to be created.TdApi.ChatLocationlocationChat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat.StringtitleTitle of the new chat; 1-128 characters.
-
Constructor Summary
Constructors Constructor Description CreateNewSupergroupChat()Default constructor for a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate.CreateNewSupergroupChat(String title, boolean isChannel, String description, TdApi.ChatLocation location, boolean forImport)Creates a function, which creates a new supergroup or channel and sends a corresponding messageSupergroupChatCreate.
-
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
-
title
public String title
Title of the new chat; 1-128 characters.
-
isChannel
public boolean isChannel
True, if a channel chat needs to be created.
-
description
public String description
Chat description; 0-255 characters.
-
location
public TdApi.ChatLocation location
Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat.
-
forImport
public boolean forImport
True, if the supergroup is created for importing messages using importMessage.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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 isChannel, String description, TdApi.ChatLocation location, 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.isChannel- True, if a channel chat needs to be 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.forImport- True, if the supergroup is created for importing messages using importMessage.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-