Interface FoundMessages

Contains a list of messages found by a search.

interface FoundMessages {
    @type: "foundMessages";
    messages: Message[];
    next_offset: string;
    total_count: number;
}

Properties

@type: "foundMessages"
messages: Message[]

List of messages.

next_offset: string

The offset for the next request. If empty, then there are no more results.

total_count: number

Approximate total number of messages found; -1 if unknown.