Module tdlight.api

Class TdApi.TransferChatOwnership

Enclosing class:
TdApi

public static final class TdApi.TransferChatOwnership extends TdApi.Function<TdApi.Ok>
Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats. Returns Ok
  • Field Details

    • chatId

      public long chatId
      Chat identifier.
    • userId

      public long 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

      public String password
      The 2-step verification password of the current user.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • TransferChatOwnership

      public TransferChatOwnership()
      Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats. Returns Ok
    • TransferChatOwnership

      public TransferChatOwnership(long chatId, long userId, String password)
      Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats. Returns Ok
      Parameters:
      chatId - long Chat identifier.
      userId - long Identifier of the user to which transfer the ownership. The ownership can't be transferred to a bot or to a deleted user.
      password - String The 2-step verification password of the current user.
    • TransferChatOwnership

      public TransferChatOwnership(DataInput input) throws IOException
      Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats. Returns Ok
      Throws:
      IOException
  • Method Details