TDLib
|
Inherits td::td_api::Object.
Public Member Functions | |
encryptedCredentials () | |
encryptedCredentials (bytes const &data_, bytes const &hash_, bytes const &secret_) | |
std::int32_t | get_id () const final |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Member Functions inherited from td::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 |
Public Attributes | |
bytes | data_ |
The encrypted credentials. | |
bytes | hash_ |
The decrypted data hash. | |
bytes | secret_ |
Secret for data decryption, encrypted with the service's public key. | |
Static Public Attributes | |
static const std::int32_t | ID = 1331106766 |
Identifier uniquely determining a type of the object. | |
Contains encrypted Telegram Passport data credentials.
td::td_api::encryptedCredentials::encryptedCredentials | ( | ) |
Contains encrypted Telegram Passport data credentials.
td::td_api::encryptedCredentials::encryptedCredentials | ( | bytes const & | data_, |
bytes const & | hash_, | ||
bytes const & | secret_ | ||
) |
Contains encrypted Telegram Passport data credentials.
[in] | data_ | The encrypted credentials. |
[in] | hash_ | The decrypted data hash. |
[in] | secret_ | Secret for data decryption, encrypted with the service's public key. |
|
inlinefinalvirtual |
Returns identifier uniquely determining a type of the object.
Implements td::TlObject.
|
finalvirtual |
Helper function for to_string method. Appends string representation of the object to the storer.
[in] | s | Storer to which object string representation will be appended. |
[in] | field_name | Object field_name if applicable. |
Implements td::TlObject.