Inherits Object.
Represents a message sent in a group call.
Public Fields | |
| int32 | message_id_ |
| Unique message identifier within the group call. | |
| object_ptr< MessageSender > | sender_id_ |
| Identifier of the sender of the message. | |
| int32 | date_ |
| Point in time (Unix timestamp) when the message was sent. | |
| object_ptr< formattedText > | text_ |
| Text of the message. If empty, then the message is a paid reaction in a live story. | |
| int53 | paid_message_star_count_ |
| The number of Telegram Stars that were paid to send the message; for live stories only. | |
| bool | is_from_owner_ |
| True, if the message is sent by the owner of the call and must be treated as a message of the maximum level; for live stories only. | |
| bool | can_be_deleted_ |
| True, if the message can be deleted by the current user; for live stories only. | |
Public Instance Methods | |
| groupCallMessage () | |
| groupCallMessage (int32 message_id_, object_ptr< MessageSender > &&sender_id_, int32 date_, object_ptr< formattedText > &&text_, int53 paid_message_star_count_, bool is_from_owner_, bool can_be_deleted_) | |
| 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 = 216155597 |
| Identifier uniquely determining a type of the object. | |
| groupCallMessage | ( | ) |
Represents a message sent in a group call.
| groupCallMessage | ( | int32 | message_id_, |
| object_ptr< MessageSender > && | sender_id_, | ||
| int32 | date_, | ||
| object_ptr< formattedText > && | text_, | ||
| int53 | paid_message_star_count_, | ||
| bool | is_from_owner_, | ||
| bool | can_be_deleted_ | ||
| ) |
Represents a message sent in a group call.
| [in] | message_id_ | Unique message identifier within the group call. |
| [in] | sender_id_ | Identifier of the sender of the message. |
| [in] | date_ | Point in time (Unix timestamp) when the message was sent. |
| [in] | text_ | Text of the message. If empty, then the message is a paid reaction in a live story. |
| [in] | paid_message_star_count_ | The number of Telegram Stars that were paid to send the message; for live stories only. |
| [in] | is_from_owner_ | True, if the message is sent by the owner of the call and must be treated as a message of the maximum level; for live stories only. |
| [in] | can_be_deleted_ | True, if the message can be deleted by the current user; for live stories only. |
|
finalvirtual |