Interface ChatListOptions

interface ChatListOptions {
    count?: number;
    direction?: "after" | "before";
    id?: Wid;
    onlyCommunities?: boolean;
    onlyGroups?: boolean;
    onlyNewsletter?: boolean;
    onlyUsers?: boolean;
    onlyWithUnreadMessage?: boolean;
    withLabels?: string[];
}

Properties

count?: number
direction?: "after" | "before"
id?: Wid
onlyCommunities?: boolean
onlyGroups?: boolean
onlyNewsletter?: boolean
onlyUsers?: boolean
onlyWithUnreadMessage?: boolean
withLabels?: string[]