Interface EmailSubmissionQueryRequest

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

Hierarchy (View Summary)

Properties

accountId: string
anchor?: null | string
anchorOffset?: number

default: 0. Negative values supported

calculateTotal?: boolean

default: false

limit?: null | number

uint

position?: number

default: 0. Like index in array. Negative values supported

sort?: null | Comparator[]