TDLib
|
Inherits td::td_api::Update.
Public Member Functions | |
updateFileGenerationStart () | |
updateFileGenerationStart (int64 generation_id_, string const &original_path_, string const &destination_path_, string const &conversion_) | |
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 | |
int64 | generation_id_ |
Unique identifier for the generation process. | |
string | original_path_ |
The path to a file from which a new file is generated; may be empty. | |
string | destination_path_ |
The path to a file that must be created and where the new file is generated. | |
string | conversion_ |
String specifying the conversion applied to the original file. If conversion is "#url#" than original_path contains an HTTP/HTTPS URL of a file, which must be downloaded by the application. | |
Static Public Attributes | |
static const std::int32_t | ID = 216817388 |
Identifier uniquely determining a type of the object. | |
The file generation process needs to be started by the application.
td::td_api::updateFileGenerationStart::updateFileGenerationStart | ( | ) |
The file generation process needs to be started by the application.
td::td_api::updateFileGenerationStart::updateFileGenerationStart | ( | int64 | generation_id_, |
string const & | original_path_, | ||
string const & | destination_path_, | ||
string const & | conversion_ | ||
) |
The file generation process needs to be started by the application.
[in] | generation_id_ | Unique identifier for the generation process. |
[in] | original_path_ | The path to a file from which a new file is generated; may be empty. |
[in] | destination_path_ | The path to a file that must be created and where the new file is generated. |
[in] | conversion_ | String specifying the conversion applied to the original file. If conversion is "#url#" than original_path contains an HTTP/HTTPS URL of a file, which must be downloaded by the application. |
|
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.