Module tdlight.api

Class TdApi.DeleteAccount

Enclosing class:
TdApi

public static final class TdApi.DeleteAccount extends TdApi.Function<TdApi.Ok>
Deletes the account of the current user, deleting all information associated with the user from the server. The phone number of the account can be used to create a new account. Can be called before authorization when the current authorization state is authorizationStateWaitPassword. Returns Ok
  • Field Details

    • reason

      public String reason
      The reason why the account was deleted; optional.
    • password

      public String password
      The 2-step verification password of the current user. If not specified, account deletion can be canceled within one week.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • DeleteAccount

      public DeleteAccount()
      Deletes the account of the current user, deleting all information associated with the user from the server. The phone number of the account can be used to create a new account. Can be called before authorization when the current authorization state is authorizationStateWaitPassword. Returns Ok
    • DeleteAccount

      public DeleteAccount(String reason, String password)
      Deletes the account of the current user, deleting all information associated with the user from the server. The phone number of the account can be used to create a new account. Can be called before authorization when the current authorization state is authorizationStateWaitPassword. Returns Ok
      Parameters:
      reason - String The reason why the account was deleted; optional.
      password - String The 2-step verification password of the current user. If not specified, account deletion can be canceled within one week.
    • DeleteAccount

      public DeleteAccount(DataInput input) throws IOException
      Deletes the account of the current user, deleting all information associated with the user from the server. The phone number of the account can be used to create a new account. Can be called before authorization when the current authorization state is authorizationStateWaitPassword. Returns Ok
      Throws:
      IOException
  • Method Details