Package org.drinkless.tdlib
Class TdApi.RevokeChatInviteLink
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.RevokeChatInviteLink
-
- Enclosing class:
- TdApi
public static class TdApi.RevokeChatInviteLink extends TdApi.Function
Revokes invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and canInviteUsers right in the chat for own links and owner privileges for other links. If a primary link is revoked, then additionally to the revoked link returns new primary link.Returns
ChatInviteLinks
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdChat identifier.static intCONSTRUCTORIdentifier uniquely determining type of the object.StringinviteLinkInvite link to be revoked.
-
Constructor Summary
Constructors Constructor Description RevokeChatInviteLink()Default constructor for a function, which revokes invite link for a chat.RevokeChatInviteLink(long chatId, String inviteLink)Creates a function, which revokes invite link for a chat.
-
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
-
chatId
public long chatId
Chat identifier.
-
inviteLink
public String inviteLink
Invite link to be revoked.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RevokeChatInviteLink
public RevokeChatInviteLink()
Default constructor for a function, which revokes invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and canInviteUsers right in the chat for own links and owner privileges for other links. If a primary link is revoked, then additionally to the revoked link returns new primary link.Returns
ChatInviteLinks
-
RevokeChatInviteLink
public RevokeChatInviteLink(long chatId, String inviteLink)Creates a function, which revokes invite link for a chat. Available for basic groups, supergroups, and channels. Requires administrator privileges and canInviteUsers right in the chat for own links and owner privileges for other links. If a primary link is revoked, then additionally to the revoked link returns new primary link.Returns
ChatInviteLinks- Parameters:
chatId- Chat identifier.inviteLink- Invite link to be revoked.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-