Module Cephalopod_models.App_Bsky_Video_Defs

lexicon "app.bsky.video.defs"

def jobStatus

type nonrec jobstatus = Types.app_bsky_video_defs_jobstatus = {
  1. jobId : string;
  2. did : string;
    (*

    format: "Did"

    *)
  3. state : string;
    (*

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

    *)
  4. progress : int64 option;
    (*

    Progress within the current processing state. maximum: 100 minimum: 0

    *)
  5. blob : Cephalopod_dasl.Blob.t option;
  6. error : string option;
  7. message : string option;
}