Inherits Object.
Contains information about a link to a message or a forum topic in a chat.
Public Fields | |
bool | is_public_ |
True, if the link is a public link for a message or a forum topic in a chat. | |
int53 | chat_id_ |
If found, identifier of the chat to which the link points, 0 otherwise. | |
int53 | message_thread_id_ |
If found, identifier of the message thread in which to open the message, or a forum topic to open if the message is missing. | |
object_ptr< message > | message_ |
If found, the linked message; may be null. | |
int32 | media_timestamp_ |
Timestamp from which the video/audio/video note/voice note/story playing must start, in seconds; 0 if not specified. The media can be in the message content or in its link preview. | |
bool | for_album_ |
True, if the whole media album to which the message belongs is linked. | |
Public Instance Methods | |
messageLinkInfo () | |
messageLinkInfo (bool is_public_, int53 chat_id_, int53 message_thread_id_, object_ptr< message > &&message_, int32 media_timestamp_, bool for_album_) | |
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 = 731315024 |
Identifier uniquely determining a type of the object. | |
messageLinkInfo | ( | ) |
Contains information about a link to a message or a forum topic in a chat.
messageLinkInfo | ( | bool | is_public_, |
int53 | chat_id_, | ||
int53 | message_thread_id_, | ||
object_ptr< message > && | message_, | ||
int32 | media_timestamp_, | ||
bool | for_album_ | ||
) |
Contains information about a link to a message or a forum topic in a chat.
[in] | is_public_ | True, if the link is a public link for a message or a forum topic in a chat. |
[in] | chat_id_ | If found, identifier of the chat to which the link points, 0 otherwise. |
[in] | message_thread_id_ | If found, identifier of the message thread in which to open the message, or a forum topic to open if the message is missing. |
[in] | message_ | If found, the linked message; may be null. |
[in] | media_timestamp_ | Timestamp from which the video/audio/video note/voice note/story playing must start, in seconds; 0 if not specified. The media can be in the message content or in its link preview. |
[in] | for_album_ | True, if the whole media album to which the message belongs is linked. |
|
finalvirtual |