JobStatus

data class JobStatus(val jobId: String, val did: Did, val state: State, val progress: Long? = null, val blob: Blob? = null, val error: String? = null, val message: String? = null)

Parameters

state

The state of the video processing job. All values not listed as a known value indicate that the job is in process.

progress

Progress within the current processing state.

Constructors

Link copied to clipboard
constructor(jobId: String, did: Did, state: State, progress: Long? = null, blob: Blob? = null, error: String? = null, message: String? = null)

Properties

Link copied to clipboard
val blob: Blob? = null
Link copied to clipboard
val did: Did
Link copied to clipboard
val error: String? = null
Link copied to clipboard
Link copied to clipboard
val message: String? = null
Link copied to clipboard
val progress: Long? = null

Progress within the current processing state.

Link copied to clipboard

The state of the video processing job. All values not listed as a known value indicate that the job is in process.