Layer 227
constructor
searchResultsCalendarPeriod#c9b0539f date:int min_msg_id:int max_msg_id:int count:int = SearchResultsCalendarPeriod;

Parameters

Name Type Description
Date int The day this object is referring to.
MinMsgId int First message ID that was sent on this day.
MaxMsgId int Last message ID that was sent on this day.
Count int All messages that were sent on this day.

Gogram Example

// Creating SearchResultsCalendarPeriodObj constructor
obj := &tg.SearchResultsCalendarPeriodObj{
    Date: 42,
    MinMsgId: 42,
    MaxMsgId: 42,
    Count: 42,
}