Interface PrioritySchemeWithPaginatedPrioritiesAndProjects

A priority scheme with paginated priorities and projects.

interface PrioritySchemeWithPaginatedPrioritiesAndProjects {
    default?: boolean;
    defaultPriorityId?: string;
    description?: string;
    id: string;
    isDefault?: boolean;
    name: string;
    priorities?: PageBeanPriorityWithSequence;
    projects?: PageBeanProjectDetails;
    self?: string;
}

Hierarchy

  • Record<string, unknown>
    • PrioritySchemeWithPaginatedPrioritiesAndProjects

Properties

default?: boolean
defaultPriorityId?: string

The ID of the default issue priority.

description?: string

The description of the priority scheme

id: string

The ID of the priority scheme.

isDefault?: boolean
name: string

The name of the priority scheme

The paginated list of priorities.

The paginated list of projects.

self?: string

The URL of the priority scheme.