interface QueueDto {
    _links?: SelfLinkDto;
    fields?: string[];
    id?: string;
    issueCount?: number;
    jql?: string;
    name?: string;
}

Properties

_links?: SelfLinkDto

REST API URL to the queue.

fields?: string[]

Fields returned for each request in the queue.

id?: string

ID for the queue.

issueCount?: number

The count of customer requests in the queue.

jql?: string

JQL query that filters reqeusts for the queue.

name?: string

Short name for the queue.