messages.SearchResultsPositions
- class pyrogram.raw.base.messages.SearchResultsPositions
Information about sparse positions of messages
- Constructors:
This base type has 1 constructor available.
Information about sparse positions of messages
- Functions:
This object can be returned by 1 function.
Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.
TL Schema
messages.searchResultsPositions#53b22baf
count:int
positions:Vector<SearchResultsPosition>
= messages.SearchResultsPositions
Parameter Tree
SearchResultsPositions
├── count →
int└── positions →
Vector < SearchResultsPosition >├── msg_id →
int├── date →
int└── offset →
intExample
SearchResultsPositions(
count=0,
positions=[
SearchResultPosition(
msg_id=0,
date=0,
offset=0
)
],
)