Inherits Function.
Saves an inline message to be sent by the given user.
Returns object_ptr<PreparedInlineMessage>.
Public Fields | |
int53 | bot_user_id_ |
Identifier of the bot that created the message. | |
string | prepared_message_id_ |
Identifier of the prepared message. | |
Public Types | |
using | ReturnType = object_ptr< preparedInlineMessage > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getPreparedInlineMessage () | |
getPreparedInlineMessage (int53 bot_user_id_, string const &prepared_message_id_) | |
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 = -83179701 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which saves an inline message to be sent by the given user.
Returns object_ptr<PreparedInlineMessage>.
getPreparedInlineMessage | ( | int53 | bot_user_id_, |
string const & | prepared_message_id_ | ||
) |
Creates a function, which saves an inline message to be sent by the given user.
Returns object_ptr<PreparedInlineMessage>.
[in] | bot_user_id_ | Identifier of the bot that created the message. |
[in] | prepared_message_id_ | Identifier of the prepared message. |
|
finalvirtual |