Inherits Function.
Creates a new temporary password for processing payments.
Returns object_ptr<TemporaryPasswordState>.
Public Fields | |
string | password_ |
The 2-step verification password of the current user. | |
int32 | valid_for_ |
Time during which the temporary password will be valid, in seconds; must be between 60 and 86400. | |
Public Types | |
using | ReturnType = object_ptr< temporaryPasswordState > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
createTemporaryPassword () | |
createTemporaryPassword (string const &password_, int32 valid_for_) | |
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 = -1626509434 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which creates a new temporary password for processing payments.
Returns object_ptr<TemporaryPasswordState>.
createTemporaryPassword | ( | string const & | password_, |
int32 | valid_for_ | ||
) |
Creates a function, which creates a new temporary password for processing payments.
Returns object_ptr<TemporaryPasswordState>.
[in] | password_ | The 2-step verification password of the current user. |
[in] | valid_for_ | Time during which the temporary password will be valid, in seconds; must be between 60 and 86400. |
|
finalvirtual |