@PublicApi
public interface QueueQuery
Queue
that a user can see.
Examples:
// Query all queues of a specific Service Desk
QueueQuery query = queueService.newQueueQueryBuilder().serviceDeskId(1).build();
// Query a specific queue by its ID
QueueQuery query = queueService.newQueueQueryBuilder().serviceDeskId(1).queueId(10).build();
Modifier and Type | Interface and Description |
---|---|
static interface |
QueueQuery.Builder
Builder to construct the
QueueQuery . |
Modifier and Type | Method and Description |
---|---|
boolean |
includeIssueCount()
Whether to include the number of issue belonging to
Queue . |
LimitedPagedRequest |
pagedRequest()
Pagination control.
|
Optional<Integer> |
queueId()
Optionally filter search result to a specific
Queue by its ID. |
int |
serviceDeskId()
ID of the
ServiceDesk whose Queue will be returned. |
int serviceDeskId()
ServiceDesk
whose Queue
will be returned.
This parameter is always required.boolean includeIssueCount()
Queue
. Default is false.LimitedPagedRequest pagedRequest()
Copyright © 2020 Atlassian. All rights reserved.