Class TdApi.CreateNewSupergroupChat

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Function
it.tdlight.jni.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 Details

    • 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
      See Also:
      Constant Field Values
  • Constructor Details

    • CreateNewSupergroupChat

      public CreateNewSupergroupChat()
      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 new supergroup or channel and sends a corresponding messageSupergroupChatCreate. Returns the newly created chat.

      Returns Chat

      Parameters:
      title - String Title of the new chat; 1-128 characters.
      isChannel - boolean True, if a channel chat needs to be created.
      description - String Chat description; 0-255 characters.
      location - ChatLocation Chat location if a location-based supergroup is being created; pass null to create an ordinary supergroup chat.
      forImport - boolean True, if the supergroup is created for importing messages using importMessage.
    • CreateNewSupergroupChat

      public CreateNewSupergroupChat​(DataInput input) throws IOException
      Throws:
      IOException
  • Method Details