Inherits Function.
Adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message.
Returns object_ptr<Message>.
Public Fields | |
int53 | chat_id_ |
Target chat. | |
object_ptr< MessageSender > | sender_id_ |
Identifier of the sender of the message. | |
object_ptr< InputMessageReplyTo > | reply_to_ |
Information about the message or story to be replied; pass null if none. | |
bool | disable_notification_ |
Pass true to disable notification for the message. | |
object_ptr< InputMessageContent > | input_message_content_ |
The content of the message to be added. | |
Public Types | |
using | ReturnType = object_ptr< message > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
addLocalMessage () | |
addLocalMessage (int53 chat_id_, object_ptr< MessageSender > &&sender_id_, object_ptr< InputMessageReplyTo > &&reply_to_, bool disable_notification_, object_ptr< InputMessageContent > &&input_message_content_) | |
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 = -166217823 |
Identifier uniquely determining a type of the object. | |
addLocalMessage | ( | ) |
Default constructor for a function, which adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message.
Returns object_ptr<Message>.
addLocalMessage | ( | int53 | chat_id_, |
object_ptr< MessageSender > && | sender_id_, | ||
object_ptr< InputMessageReplyTo > && | reply_to_, | ||
bool | disable_notification_, | ||
object_ptr< InputMessageContent > && | input_message_content_ | ||
) |
Creates a function, which adds a local message to a chat. The message is persistent across application restarts only if the message database is used. Returns the added message.
Returns object_ptr<Message>.
[in] | chat_id_ | Target chat. |
[in] | sender_id_ | Identifier of the sender of the message. |
[in] | reply_to_ | Information about the message or story to be replied; pass null if none. |
[in] | disable_notification_ | Pass true to disable notification for the message. |
[in] | input_message_content_ | The content of the message to be added. |
|
finalvirtual |