Interface QueueQuery
@PublicApi
public interface QueueQuery
Parameters to query
Queue
that a user can see.
Examples:
// Query all queues of a specific service project
QueueQuery query = queueService.newQueueQueryBuilder().serviceDeskId(1).build();
// Query a specific queue by its ID
QueueQuery query = queueService.newQueueQueryBuilder().serviceDeskId(1).queueId(10).build();
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether to include the number of issue belonging toQueue
.Pagination control.queueId()
Optionally filter search result to a specificQueue
by its ID.int
ID of theServiceDesk
whoseQueue
will be returned.
-
Method Details
-
queueId
Optionally filter search result to a specificQueue
by its ID. -
serviceDeskId
int serviceDeskId()ID of theServiceDesk
whoseQueue
will be returned. This parameter is always required. -
includeIssueCount
boolean includeIssueCount()Whether to include the number of issue belonging toQueue
. Default is false. -
pagedRequest
LimitedPagedRequest pagedRequest()Pagination control.
-