interface SearchPriorities {
    id?: string[];
    maxResults?: number;
    onlyDefault?: boolean;
    projectId?: string[];
    startAt?: number;
}

Properties

id?: string[]

The list of priority IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=2&id=3.

maxResults?: number

The maximum number of items to return per page.

onlyDefault?: boolean

Whether only the default priority is returned.

projectId?: string[]

The list of projects IDs. To include multiple IDs, provide an ampersand-separated list. For example, projectId=10010&projectId=10111.

startAt?: number

The index of the first item to return in a page of results (page offset).