JobStatus constructor
- @JsonSerializable(includeIfNull: false)
const
JobStatus(
{ - @Default('app.bsky.video.defs#jobStatus') String $type,
- required String jobId,
- required String did,
- @JobStatusStateConverter() required JobStatusState state,
- int? progress,
- @BlobConverter() Blob? blob,
- String? error,
- String? message,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory JobStatus({
@Default('app.bsky.video.defs#jobStatus') String $type,
required String jobId,
required String did,
/// The state of the video processing job. All values not listed as a known value indicate that the job is in process.
@JobStatusStateConverter() required JobStatusState state,
/// Progress within the current processing state.
int? progress,
@BlobConverter() Blob? blob,
String? error,
String? message,
Map<String, dynamic>? $unknown,
}) = _JobStatus;