Jira.js - Jira Cloud API library
    Preparing search index...

    Interface SearchPriorities

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

    Properties

    expand?: string

    Use schemes to return the associated priority schemes for each priority. Limited to returning first 15 priority schemes per priority.

    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.

    priorityName?: string

    The name of priority to search for.

    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).