Interface GetChatMessageCalendar

Returns information about the next messages of the specified type in the chat split by days. Returns the results in reverse chronological order. Can return partial result for the last returned day. Behavior of this method depends on the value of the option "utc_time_offset". Request type for Tdjson#getChatMessageCalendar.

interface GetChatMessageCalendar {
    @type: "getChatMessageCalendar";
    chat_id: number;
    filter: SearchMessagesFilter;
    from_message_id: number;
    saved_messages_topic_id: number;
}

Properties

@type: "getChatMessageCalendar"
chat_id: number

Identifier of the chat in which to return information about messages.

Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function.

from_message_id: number

The message identifier from which to return information about messages; use 0 to get results from the last message.

saved_messages_topic_id: number

If not0, only messages in the specified Saved Messages topic will be considered; pass 0 to consider all messages, or for chats other than Saved Messages.