Class TdApi.GetChatInviteLinks

Enclosing class:
TdApi

public static class TdApi.GetChatInviteLinks
extends TdApi.Function
Returns invite links for a chat created by specified administrator. Requires administrator privileges and canInviteUsers right in the chat to get own links and owner privileges to get other links.

Returns ChatInviteLinks

  • Field Summary

    Fields
    Modifier and Type Field Description
    long chatId
    Chat identifier.
    static int CONSTRUCTOR  
    long creatorUserId
    User identifier of a chat administrator.
    boolean isRevoked
    Pass true if revoked links needs to be returned instead of active or expired.
    int limit
    The maximum number of invite links to return.
    int offsetDate
    Creation date of an invite link starting after which to return invite links; use 0 to get results from the beginning.
    String offsetInviteLink
    Invite link starting after which to return invite links; use empty string to get results from the beginning.
  • Constructor Summary

    Constructors
    Constructor Description
    GetChatInviteLinks()
    Returns invite links for a chat created by specified administrator.
    GetChatInviteLinks​(long chatId, long creatorUserId, boolean isRevoked, int offsetDate, String offsetInviteLink, int limit)
    Returns invite links for a chat created by specified administrator.
    GetChatInviteLinks​(DataInput input)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(Object o)  
    int getConstructor()  
    int hashCode()  
    void serialize​(DataOutput output)  

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatId

      public long chatId
      Chat identifier.
    • creatorUserId

      public long creatorUserId
      User identifier of a chat administrator. Must be an identifier of the current user for non-owner.
    • isRevoked

      public boolean isRevoked
      Pass true if revoked links needs to be returned instead of active or expired.
    • offsetDate

      public int offsetDate
      Creation date of an invite link starting after which to return invite links; use 0 to get results from the beginning.
    • limit

      public int limit
      The maximum number of invite links to return.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
      Constant Field Values
  • Constructor Details

    • GetChatInviteLinks

      public GetChatInviteLinks()
      Returns invite links for a chat created by specified administrator. Requires administrator privileges and canInviteUsers right in the chat to get own links and owner privileges to get other links.

      Returns ChatInviteLinks

    • GetChatInviteLinks

      public GetChatInviteLinks​(long chatId, long creatorUserId, boolean isRevoked, int offsetDate, String offsetInviteLink, int limit)
      Returns invite links for a chat created by specified administrator. Requires administrator privileges and canInviteUsers right in the chat to get own links and owner privileges to get other links.

      Returns ChatInviteLinks

      Parameters:
      chatId - long Chat identifier.
      creatorUserId - long User identifier of a chat administrator. Must be an identifier of the current user for non-owner.
      isRevoked - boolean Pass true if revoked links needs to be returned instead of active or expired.
      offsetDate - int Creation date of an invite link starting after which to return invite links; use 0 to get results from the beginning.
      offsetInviteLink - String Invite link starting after which to return invite links; use empty string to get results from the beginning.
      limit - int The maximum number of invite links to return.
    • GetChatInviteLinks

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