Inherits Object.
Contains information about interactions with a message.
Public Fields | |
int32 | view_count_ |
Number of times the message was viewed. | |
int32 | forward_count_ |
Number of times the message was forwarded. | |
object_ptr< messageReplyInfo > | reply_info_ |
Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself. | |
object_ptr< messageReactions > | reactions_ |
The list of reactions or tags added to the message; may be null. | |
Public Instance Methods | |
messageInteractionInfo () | |
messageInteractionInfo (int32 view_count_, int32 forward_count_, object_ptr< messageReplyInfo > &&reply_info_, object_ptr< messageReactions > &&reactions_) | |
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 = 733797893 |
Identifier uniquely determining a type of the object. | |
Contains information about interactions with a message.
messageInteractionInfo | ( | int32 | view_count_, |
int32 | forward_count_, | ||
object_ptr< messageReplyInfo > && | reply_info_, | ||
object_ptr< messageReactions > && | reactions_ | ||
) |
Contains information about interactions with a message.
[in] | view_count_ | Number of times the message was viewed. |
[in] | forward_count_ | Number of times the message was forwarded. |
[in] | reply_info_ | Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself. |
[in] | reactions_ | The list of reactions or tags added to the message; may be null. |
|
finalvirtual |