|
TDLib
|
Inherits td::td_api::Function.
Public Types | |
| using | ReturnType = object_ptr< message > |
| Typedef for the type returned by the function. | |
Public Member Functions | |
| addLocalMessage () | |
| addLocalMessage (int53 chat_id_, object_ptr< MessageSender > &&sender_id_, object_ptr< MessageReplyTo > &&reply_to_, bool disable_notification_, object_ptr< InputMessageContent > &&input_message_content_) | |
| 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 | |
| int53 | chat_id_ |
| Target chat. | |
| object_ptr< MessageSender > | sender_id_ |
| Identifier of the sender of the message. | |
| object_ptr< MessageReplyTo > | reply_to_ |
| Identifier of the replied message or story; 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. | |
Static Public Attributes | |
| static const std::int32_t | ID = 1725960611 |
| Identifier uniquely determining a type of the object. | |
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>.
| td::td_api::addLocalMessage::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>.
| td::td_api::addLocalMessage::addLocalMessage | ( | int53 | chat_id_, |
| object_ptr< MessageSender > && | sender_id_, | ||
| object_ptr< MessageReplyTo > && | 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_ | Identifier of the replied message or story; 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. |
|
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.