SearchResultsCalendarPeriod
- class pyrogram.raw.types.SearchResultsCalendarPeriod
Information about found messages sent on a specific day, used to split the messages in messages.searchResultsCalendar constructors by days.
Constructor of
SearchResultsCalendarPeriod.- Details:
Layer:
223ID:
C9B0539F
- Parameters:
date (
int32-bit) – The day this object is referring to.min_msg_id (
int32-bit) – First message ID that was sent on this day.max_msg_id (
int32-bit) – Last message ID that was sent on this day.count (
int32-bit) – All messages that were sent on this day.
TL Schema
searchResultsCalendarPeriod#c9b0539f
date:int
min_msg_id:int
max_msg_id:int
count:int
= SearchResultsCalendarPeriod
Parameter Tree
SearchResultsCalendarPeriod
├── date →
int├── min_msg_id →
int├── max_msg_id →
int└── count →
intExample
SearchResultsCalendarPeriod(
date=0,
min_msg_id=0,
max_msg_id=0,
count=0,
)