Change the order of issue priorities.

interface ReorderIssuePriorities {
    after?: string;
    ids: string[];
    position?: string;
}

Hierarchy (view full)

Properties

Properties

after?: string

The ID of the priority. Required if position isn't provided.

ids: string[]

The list of issue IDs to be reordered. Cannot contain duplicates nor after ID.

position?: string

The position for issue priorities to be moved to. Required if after isn't provided.