Parameters for the searchEmails function.

interface SearchEmailsParams {
    createdFrom?: number;
    createdTo?: number;
    pageKeyMap?: string;
    sortDesc?: boolean;
    userId?: string;
}

Properties

createdFrom?: number

Unix ms timestamp of earliest created value.

createdTo?: number

Unix ms timestamp of latest created value.

pageKeyMap?: string

Page key map from previous search page.

sortDesc?: boolean

Sort results in descending order by created if true.

userId?: string

Unique id of related User record.