Class 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 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.