Layer 220
constructor

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 SearchResultsCalendarPeriod constructor
obj := &tg.SearchResultsCalendarPeriod{
    Date: 0,
    MinMsgId: 0,
    MaxMsgId: 0,
    Count: 0,
}