Package org.drinkless.tdlib
Class TdApi.TransferChatOwnership
- Enclosing class:
TdApi
Changes the owner of a chat; for basic groups, supergroups and channel chats only; requires owner privileges in the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session.
Returns Ok
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionlongChat identifier.static final intIdentifier uniquely determining type of the object.The 2-step verification password of the current user.longIdentifier of the user to which transfer the ownership. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which changes the owner of a chat; for basic groups, supergroups and channel chats only; requires owner privileges in the chat.TransferChatOwnership(long chatId, long userId, String password) Creates a function, which changes the owner of a chat; for basic groups, supergroups and channel chats only; requires owner privileges in the chat. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier. -
userId
public long userIdIdentifier of the user to which transfer the ownership. The ownership can't be transferred to a bot or to a deleted user. -
password
The 2-step verification password of the current user. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
TransferChatOwnership
public TransferChatOwnership()Default constructor for a function, which changes the owner of a chat; for basic groups, supergroups and channel chats only; requires owner privileges in the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session.Returns
Ok -
TransferChatOwnership
Creates a function, which changes the owner of a chat; for basic groups, supergroups and channel chats only; requires owner privileges in the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session.Returns
Ok- Parameters:
chatId- Chat identifier.userId- Identifier of the user to which transfer the ownership. The ownership can't be transferred to a bot or to a deleted user.password- The 2-step verification password of the current user.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.Ok>- Returns:
- this.CONSTRUCTOR
-