ZyncJobStats

data class ZyncJobStats(val totalJobs: Int, val completedJobs: Int, val closedJobs: Int, val incompleteJobs: Int, val onProgress: Int, val yetToStart: Int, val delayed: Int)

Represents job statistics for a given date range.

This data class contains aggregated counts of jobs grouped by their current status types, providing insights into job completion rates, progress, and delays.

Constructors

Link copied to clipboard
constructor(totalJobs: Int, completedJobs: Int, closedJobs: Int, incompleteJobs: Int, onProgress: Int, yetToStart: Int, delayed: Int)

Properties

Link copied to clipboard

Number of jobs with CLOSED status

Link copied to clipboard

Number of jobs with COMPLETED status

Link copied to clipboard

Number of delayed jobs (based on SLA or due date)

Link copied to clipboard

Number of jobs with CANNOT_COMPLETE, ON_HOLD, or FAILED status

Link copied to clipboard

Number of jobs with STARTED or ON_MY_WAY status

Link copied to clipboard

Total number of jobs in the date range

Link copied to clipboard

Number of jobs with SCHEDULED, NEW, or null status