Inherits Object.
Contains a list of messages found by a public post search.
Public Fields | |
array< object_ptr< message > > | messages_ |
List of found public posts. | |
string | next_offset_ |
The offset for the next request. If empty, then there are no more results. | |
object_ptr< publicPostSearchLimits > | search_limits_ |
Updated public post search limits after the query; repeated requests with the same query will be free; may be null if they didn't change. | |
bool | are_limits_exceeded_ |
True, if the query has failed because search limits are exceeded. In this case search_limits.daily_free_query_count will be equal to 0. | |
Public Instance Methods | |
foundPublicPosts () | |
foundPublicPosts (array< object_ptr< message >> &&messages_, string const &next_offset_, object_ptr< publicPostSearchLimits > &&search_limits_, bool are_limits_exceeded_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
![]() | |
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 = 1231347940 |
Identifier uniquely determining a type of the object. | |
foundPublicPosts | ( | ) |
Contains a list of messages found by a public post search.
foundPublicPosts | ( | array< object_ptr< message >> && | messages_, |
string const & | next_offset_, | ||
object_ptr< publicPostSearchLimits > && | search_limits_, | ||
bool | are_limits_exceeded_ | ||
) |
Contains a list of messages found by a public post search.
[in] | messages_ | List of found public posts. |
[in] | next_offset_ | The offset for the next request. If empty, then there are no more results. |
[in] | search_limits_ | Updated public post search limits after the query; repeated requests with the same query will be free; may be null if they didn't change. |
[in] | are_limits_exceeded_ | True, if the query has failed because search limits are exceeded. In this case search_limits.daily_free_query_count will be equal to 0. |
|
finalvirtual |