Inherits Function.
Forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message.
Returns object_ptr<Messages>.
Public Fields | |
int53 | chat_id_ |
Identifier of the chat to which to forward messages. | |
int53 | message_thread_id_ |
If not 0, the message thread identifier in which the message will be sent; for forum threads only. | |
int53 | from_chat_id_ |
Identifier of the chat from which to forward messages. | |
array< int53 > | message_ids_ |
Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously. A message can be forwarded only if messageProperties.can_be_forwarded. | |
object_ptr< messageSendOptions > | options_ |
Options to be used to send the messages; pass null to use default options. | |
bool | send_copy_ |
Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local. Use messageProperties.can_be_saved and messageProperties.can_be_copied_to_secret_chat to check whether the message is suitable. | |
bool | remove_caption_ |
Pass true to remove media captions of message copies. Ignored if send_copy is false. | |
Public Types | |
using | ReturnType = object_ptr< messages > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
forwardMessages () | |
forwardMessages (int53 chat_id_, int53 message_thread_id_, int53 from_chat_id_, array< int53 > &&message_ids_, object_ptr< messageSendOptions > &&options_, bool send_copy_, bool remove_caption_) | |
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 = 966156347 |
Identifier uniquely determining a type of the object. | |
forwardMessages | ( | ) |
Default constructor for a function, which forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message.
Returns object_ptr<Messages>.
forwardMessages | ( | int53 | chat_id_, |
int53 | message_thread_id_, | ||
int53 | from_chat_id_, | ||
array< int53 > && | message_ids_, | ||
object_ptr< messageSendOptions > && | options_, | ||
bool | send_copy_, | ||
bool | remove_caption_ | ||
) |
Creates a function, which forwards previously sent messages. Returns the forwarded messages in the same order as the message identifiers passed in message_ids. If a message can't be forwarded, null will be returned instead of the message.
Returns object_ptr<Messages>.
[in] | chat_id_ | Identifier of the chat to which to forward messages. |
[in] | message_thread_id_ | If not 0, the message thread identifier in which the message will be sent; for forum threads only. |
[in] | from_chat_id_ | Identifier of the chat from which to forward messages. |
[in] | message_ids_ | Identifiers of the messages to forward. Message identifiers must be in a strictly increasing order. At most 100 messages can be forwarded simultaneously. A message can be forwarded only if messageProperties.can_be_forwarded. |
[in] | options_ | Options to be used to send the messages; pass null to use default options. |
[in] | send_copy_ | Pass true to copy content of the messages without reference to the original sender. Always true if the messages are forwarded to a secret chat or are local. Use messageProperties.can_be_saved and messageProperties.can_be_copied_to_secret_chat to check whether the message is suitable. |
[in] | remove_caption_ | Pass true to remove media captions of message copies. Ignored if send_copy is false. |
|
finalvirtual |