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

Properties

id?: string[]

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

maxResults?: string

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?: string

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