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
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether to include the number of issue belonging toQueue.Pagination control.queueId()Optionally filter search result to a specificQueueby its ID.intID of theServiceDeskwhoseQueuewill be returned.
-
Method Details
-
queueId
Optionally filter search result to a specificQueueby its ID. -
serviceDeskId
int serviceDeskId()ID of theServiceDeskwhoseQueuewill 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.
-