Inherits Object.
Contains information about one website the current user is logged in with Telegram.
Public Fields | |
int64 | id_ |
Website identifier. | |
string | domain_name_ |
The domain name of the website. | |
int53 | bot_user_id_ |
User identifier of a bot linked with the website. | |
string | browser_ |
The version of a browser used to log in. | |
string | platform_ |
Operating system the browser is running on. | |
int32 | log_in_date_ |
Point in time (Unix timestamp) when the user was logged in. | |
int32 | last_active_date_ |
Point in time (Unix timestamp) when obtained authorization was last used. | |
string | ip_address_ |
IP address from which the user was logged in, in human-readable format. | |
string | location_ |
Human-readable description of a country and a region from which the user was logged in, based on the IP address. | |
Public Instance Methods | |
connectedWebsite () | |
connectedWebsite (int64 id_, string const &domain_name_, int53 bot_user_id_, string const &browser_, string const &platform_, int32 log_in_date_, int32 last_active_date_, string const &ip_address_, string const &location_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 1978115978 |
Identifier uniquely determining a type of the object. | |
connectedWebsite | ( | ) |
Contains information about one website the current user is logged in with Telegram.
connectedWebsite | ( | int64 | id_, |
string const & | domain_name_, | ||
int53 | bot_user_id_, | ||
string const & | browser_, | ||
string const & | platform_, | ||
int32 | log_in_date_, | ||
int32 | last_active_date_, | ||
string const & | ip_address_, | ||
string const & | location_ | ||
) |
Contains information about one website the current user is logged in with Telegram.
[in] | id_ | Website identifier. |
[in] | domain_name_ | The domain name of the website. |
[in] | bot_user_id_ | User identifier of a bot linked with the website. |
[in] | browser_ | The version of a browser used to log in. |
[in] | platform_ | Operating system the browser is running on. |
[in] | log_in_date_ | Point in time (Unix timestamp) when the user was logged in. |
[in] | last_active_date_ | Point in time (Unix timestamp) when obtained authorization was last used. |
[in] | ip_address_ | IP address from which the user was logged in, in human-readable format. |
[in] | location_ | Human-readable description of a country and a region from which the user was logged in, based on the IP address. |
|
finalvirtual |