getJobSlots method

Future<TransloaditResponse> getJobSlots()

Retrieves the sum of priority job slots that are currently in use in the count field of the response

Implementation

Future<TransloaditResponse> getJobSlots() async {
  final response = await request.httpGet(
      service: service, assemblyPath: "/queues/job_slots");
  return response;
}