Interface EmailQueryRequest

interface EmailQueryRequest {
    accountId: string;
    anchor?: null | string;
    anchorOffset?: number;
    calculateTotal?: boolean;
    collapseThreads?: boolean;
    filter?: null | FilterOperator | EmailFilterCondition;
    limit?: null | number;
    position?: number;
    sort?: null | Comparator[];
}

Hierarchy (view full)

Properties

accountId: string
anchor?: null | string
anchorOffset?: number
calculateTotal?: boolean
collapseThreads?: boolean
limit?: null | number
position?: number
sort?: null | Comparator[]