TDLib
|
Inherits td::td_api::Function.
Public Types | |
using | ReturnType = object_ptr< LanguagePackStringValue > |
Typedef for the type returned by the function. | |
Public Member Functions | |
getLanguagePackString () | |
getLanguagePackString (string const &language_pack_database_path_, string const &localization_target_, string const &language_pack_id_, string const &key_) | |
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 | |
string | language_pack_database_path_ |
Path to the language pack database in which strings are stored. | |
string | localization_target_ |
Localization target to which the language pack belongs. | |
string | language_pack_id_ |
Language pack identifier. | |
string | key_ |
Language pack key of the string to be returned. | |
Static Public Attributes | |
static const std::int32_t | ID = 150789747 |
Identifier uniquely determining a type of the object. | |
Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously.
Returns object_ptr<LanguagePackStringValue>.
td::td_api::getLanguagePackString::getLanguagePackString | ( | ) |
Default constructor for a function, which returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously.
Returns object_ptr<LanguagePackStringValue>.
td::td_api::getLanguagePackString::getLanguagePackString | ( | string const & | language_pack_database_path_, |
string const & | localization_target_, | ||
string const & | language_pack_id_, | ||
string const & | key_ | ||
) |
Creates a function, which returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously.
Returns object_ptr<LanguagePackStringValue>.
[in] | language_pack_database_path_ | Path to the language pack database in which strings are stored. |
[in] | localization_target_ | Localization target to which the language pack belongs. |
[in] | language_pack_id_ | Language pack identifier. |
[in] | key_ | Language pack key of the string to be returned. |
|
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.