Module tdlight.api

Class TdApi.ChatInviteLink

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.ChatInviteLink
Enclosing class:
TdApi

public static final class TdApi.ChatInviteLink extends TdApi.Object
Contains a chat invite link.
  • Field Details

    • name

      public String name
      Name of the link.
    • creatorUserId

      public long creatorUserId
      User identifier of an administrator created the link.
    • date

      public int date
      Point in time (Unix timestamp) when the link was created.
    • editDate

      public int editDate
      Point in time (Unix timestamp) when the link was last edited; 0 if never or unknown.
    • expirationDate

      public int expirationDate
      Point in time (Unix timestamp) when the link will expire; 0 if never.
    • memberLimit

      public int memberLimit
      The maximum number of members, which can join the chat using the link simultaneously; 0 if not limited. Always 0 if the link requires approval.
    • memberCount

      public int memberCount
      Number of chat members, which joined the chat using the link.
    • pendingJoinRequestCount

      public int pendingJoinRequestCount
      Number of pending join requests created using this link.
    • createsJoinRequest

      public boolean createsJoinRequest
      True, if the link only creates join request. If true, total number of joining members will be unlimited.
    • isPrimary

      public boolean isPrimary
      True, if the link is primary. Primary invite link can't have name, expiration date, or usage limit. There is exactly one primary invite link for each administrator with canInviteUsers right at a given time.
    • isRevoked

      public boolean isRevoked
      True, if the link was revoked.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • ChatInviteLink

      public ChatInviteLink()
      Contains a chat invite link.
    • ChatInviteLink

      public ChatInviteLink(String inviteLink, String name, long creatorUserId, int date, int editDate, int expirationDate, int memberLimit, int memberCount, int pendingJoinRequestCount, boolean createsJoinRequest, boolean isPrimary, boolean isRevoked)
      Contains a chat invite link.
      Parameters:
      inviteLink - String Chat invite link.
      name - String Name of the link.
      creatorUserId - long User identifier of an administrator created the link.
      date - int Point in time (Unix timestamp) when the link was created.
      editDate - int Point in time (Unix timestamp) when the link was last edited; 0 if never or unknown.
      expirationDate - int Point in time (Unix timestamp) when the link will expire; 0 if never.
      memberLimit - int The maximum number of members, which can join the chat using the link simultaneously; 0 if not limited. Always 0 if the link requires approval.
      memberCount - int Number of chat members, which joined the chat using the link.
      pendingJoinRequestCount - int Number of pending join requests created using this link.
      createsJoinRequest - boolean True, if the link only creates join request. If true, total number of joining members will be unlimited.
      isPrimary - boolean True, if the link is primary. Primary invite link can't have name, expiration date, or usage limit. There is exactly one primary invite link for each administrator with canInviteUsers right at a given time.
      isRevoked - boolean True, if the link was revoked.
    • ChatInviteLink

      public ChatInviteLink(DataInput input) throws IOException
      Contains a chat invite link.
      Throws:
      IOException
  • Method Details