Module tdlight.api

Class TdApi.ConnectedWebsite

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

public static final class TdApi.ConnectedWebsite extends TdApi.Object
Contains information about one website the current user is logged in with Telegram.
  • Field Details

    • id

      public long id
      Website identifier.
    • domainName

      public String domainName
      The domain name of the website.
    • botUserId

      public long botUserId
      User identifier of a bot linked with the website.
    • browser

      public String browser
      The version of a browser used to log in.
    • platform

      public String platform
      Operating system the browser is running on.
    • logInDate

      public int logInDate
      Point in time (Unix timestamp) when the user was logged in.
    • lastActiveDate

      public int lastActiveDate
      Point in time (Unix timestamp) when obtained authorization was last used.
    • ip

      public String ip
      IP address from which the user was logged in, in human-readable format.
    • location

      public String location
      Human-readable description of a country and a region from which the user was logged in, based on the IP address.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • ConnectedWebsite

      public ConnectedWebsite()
      Contains information about one website the current user is logged in with Telegram.
    • ConnectedWebsite

      public ConnectedWebsite(long id, String domainName, long botUserId, String browser, String platform, int logInDate, int lastActiveDate, String ip, String location)
      Contains information about one website the current user is logged in with Telegram.
      Parameters:
      id - long Website identifier.
      domainName - String The domain name of the website.
      botUserId - long User identifier of a bot linked with the website.
      browser - String The version of a browser used to log in.
      platform - String Operating system the browser is running on.
      logInDate - int Point in time (Unix timestamp) when the user was logged in.
      lastActiveDate - int Point in time (Unix timestamp) when obtained authorization was last used.
      ip - String IP address from which the user was logged in, in human-readable format.
      location - String Human-readable description of a country and a region from which the user was logged in, based on the IP address.
    • ConnectedWebsite

      public ConnectedWebsite(DataInput input) throws IOException
      Contains information about one website the current user is logged in with Telegram.
      Throws:
      IOException
  • Method Details