Inherits Object.
Contains information about an unconfirmed session.
Public Fields | |
int64 | id_ |
Session identifier. | |
int32 | log_in_date_ |
Point in time (Unix timestamp) when the user has logged in. | |
string | device_model_ |
Model of the device that was used for the session creation, as provided by the application. | |
string | location_ |
A human-readable description of the location from which the session was created, based on the IP address. | |
Public Instance Methods | |
unconfirmedSession () | |
unconfirmedSession (int64 id_, int32 log_in_date_, string const &device_model_, 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 = -2062726663 |
Identifier uniquely determining a type of the object. | |
Contains information about an unconfirmed session.
unconfirmedSession | ( | int64 | id_, |
int32 | log_in_date_, | ||
string const & | device_model_, | ||
string const & | location_ | ||
) |
Contains information about an unconfirmed session.
[in] | id_ | Session identifier. |
[in] | log_in_date_ | Point in time (Unix timestamp) when the user has logged in. |
[in] | device_model_ | Model of the device that was used for the session creation, as provided by the application. |
[in] | location_ | A human-readable description of the location from which the session was created, based on the IP address. |
|
finalvirtual |