Inherits Object.
Represents interaction with a story.
Public Fields | |
object_ptr< MessageSender > | actor_id_ |
Identifier of the user or chat that made the interaction. | |
int32 | interaction_date_ |
Approximate point in time (Unix timestamp) when the interaction happened. | |
object_ptr< BlockList > | block_list_ |
Block list to which the actor is added; may be null if none or for chat stories. | |
object_ptr< StoryInteractionType > | type_ |
Type of the interaction. | |
Public Instance Methods | |
storyInteraction () | |
storyInteraction (object_ptr< MessageSender > &&actor_id_, int32 interaction_date_, object_ptr< BlockList > &&block_list_, object_ptr< StoryInteractionType > &&type_) | |
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 = -702229982 |
Identifier uniquely determining a type of the object. | |
storyInteraction | ( | ) |
Represents interaction with a story.
storyInteraction | ( | object_ptr< MessageSender > && | actor_id_, |
int32 | interaction_date_, | ||
object_ptr< BlockList > && | block_list_, | ||
object_ptr< StoryInteractionType > && | type_ | ||
) |
Represents interaction with a story.
[in] | actor_id_ | Identifier of the user or chat that made the interaction. |
[in] | interaction_date_ | Approximate point in time (Unix timestamp) when the interaction happened. |
[in] | block_list_ | Block list to which the actor is added; may be null if none or for chat stories. |
[in] | type_ | Type of the interaction. |
|
finalvirtual |