|
TDLib
|
Inherits td::td_api::Object.
Public Member Functions | |
| chatActiveStories () | |
| chatActiveStories (int53 chat_id_, object_ptr< StoryList > &&list_, int53 order_, int32 max_read_story_id_, array< object_ptr< storyInfo > > &&stories_) | |
| std::int32_t | get_id () const final |
| void | store (TlStorerToString &s, const char *field_name) const final |
Public Member Functions inherited from td::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 |
Public Attributes | |
| int53 | chat_id_ |
| Identifier of the chat that posted the stories. | |
| object_ptr< StoryList > | list_ |
| Identifier of the story list in which the stories are shown; may be null if the stories aren't shown in a story list. | |
| int53 | order_ |
| A parameter used to determine order of the stories in the story list; 0 if the stories doesn't need to be shown in the story list. Stories must be sorted by the pair (order, story_sender_chat_id) in descending order. | |
| int32 | max_read_story_id_ |
| Identifier of the last read active story. | |
| array< object_ptr< storyInfo > > | stories_ |
| Basic information about the stories; use getStory to get full information about the stories. The stories are in a chronological order (i.e., in order of increasing story identifiers). | |
Static Public Attributes | |
| static const std::int32_t | ID = -1398869529 |
| Identifier uniquely determining a type of the object. | |
Describes active stories posted by a chat.
| td::td_api::chatActiveStories::chatActiveStories | ( | ) |
Describes active stories posted by a chat.
| td::td_api::chatActiveStories::chatActiveStories | ( | int53 | chat_id_, |
| object_ptr< StoryList > && | list_, | ||
| int53 | order_, | ||
| int32 | max_read_story_id_, | ||
| array< object_ptr< storyInfo > > && | stories_ | ||
| ) |
Describes active stories posted by a chat.
| [in] | chat_id_ | Identifier of the chat that posted the stories. |
| [in] | list_ | Identifier of the story list in which the stories are shown; may be null if the stories aren't shown in a story list. |
| [in] | order_ | A parameter used to determine order of the stories in the story list; 0 if the stories doesn't need to be shown in the story list. Stories must be sorted by the pair (order, story_sender_chat_id) in descending order. |
| [in] | max_read_story_id_ | Identifier of the last read active story. |
| [in] | stories_ | Basic information about the stories; use getStory to get full information about the stories. The stories are in a chronological order (i.e., in order of increasing story identifiers). |
|
inlinefinalvirtual |
Returns identifier uniquely determining a type of the object.
Implements td::TlObject.
|
finalvirtual |
Helper function for to_string method. Appends string representation of the object to the storer.
| [in] | s | Storer to which object string representation will be appended. |
| [in] | field_name | Object field_name if applicable. |
Implements td::TlObject.