Job Status
data class JobStatus(val errorResults: List<JobStatusErrorResult>? = null, val errors: List<JobStatusError>? = null, val state: String? = null)
Constructors
Link copied to clipboard
constructor(errorResults: List<JobStatusErrorResult>? = null, errors: List<JobStatusError>? = null, state: String? = null)
Properties
Link copied to clipboard
(Output) Final error result of the job. If present, indicates that the job has completed and was unsuccessful. Structure is documented below.
Link copied to clipboard
(Output) The first errors encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has not completed or was unsuccessful. Structure is documented below.