SearchResultsCalendarPeriod

class pyrogram.raw.base.SearchResultsCalendarPeriod

Information about found messages sent on a specific day, used to split the messages in messages.searchResultsCalendar constructors by days.

Constructors:

This base type has 1 constructor available.

SearchResultsCalendarPeriod

Information about found messages sent on a specific day, used to split the messages in messages.searchResultsCalendar constructors by days.

TL Schema

searchResultsCalendarPeriod#c9b0539f
date:int
min_msg_id:int
max_msg_id:int
count:int

= SearchResultsCalendarPeriod

Parameter Tree

SearchResultsCalendarPeriod
├── dateint
├── min_msg_idint
├── max_msg_idint
└── countint

Example

SearchResultsCalendarPeriod(
    date=0,
    min_msg_id=0,
    max_msg_id=0,
    count=0,
)