Inherits Function.
Sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages.
Returns object_ptr<Messages>.
Public Fields | |
int53 | chat_id_ |
Target chat. | |
int53 | message_thread_id_ |
If not 0, the message thread identifier in which the messages will be sent. | |
object_ptr< InputMessageReplyTo > | reply_to_ |
Information about the message or story to be replied; pass null if none. | |
object_ptr< messageSendOptions > | options_ |
Options to be used to send the messages; pass null to use default options. | |
array< object_ptr< InputMessageContent > > | input_message_contents_ |
Contents of messages to be sent. At most 10 messages can be added to an album. All messages must have the same value of show_caption_above_media. | |
Public Types | |
using | ReturnType = object_ptr< messages > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
sendMessageAlbum () | |
sendMessageAlbum (int53 chat_id_, int53 message_thread_id_, object_ptr< InputMessageReplyTo > &&reply_to_, object_ptr< messageSendOptions > &&options_, array< object_ptr< InputMessageContent >> &&input_message_contents_) | |
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 = -1985013029 |
Identifier uniquely determining a type of the object. | |
sendMessageAlbum | ( | ) |
Default constructor for a function, which sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages.
Returns object_ptr<Messages>.
sendMessageAlbum | ( | int53 | chat_id_, |
int53 | message_thread_id_, | ||
object_ptr< InputMessageReplyTo > && | reply_to_, | ||
object_ptr< messageSendOptions > && | options_, | ||
array< object_ptr< InputMessageContent >> && | input_message_contents_ | ||
) |
Creates a function, which sends 2-10 messages grouped together into an album. Currently, only audio, document, photo and video messages can be grouped into an album. Documents and audio files can be only grouped in an album with messages of the same type. Returns sent messages.
Returns object_ptr<Messages>.
[in] | chat_id_ | Target chat. |
[in] | message_thread_id_ | If not 0, the message thread identifier in which the messages will be sent. |
[in] | reply_to_ | Information about the message or story to be replied; pass null if none. |
[in] | options_ | Options to be used to send the messages; pass null to use default options. |
[in] | input_message_contents_ | Contents of messages to be sent. At most 10 messages can be added to an album. All messages must have the same value of show_caption_above_media. |
|
finalvirtual |