A fork of https://github.com/teal-fm/piper
at main 22 lines 918 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package bsky 4 5// schema: app.bsky.video.defs 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11// VideoDefs_JobStatus is a "jobStatus" in the app.bsky.video.defs schema. 12type VideoDefs_JobStatus struct { 13 Blob *util.LexBlob `json:"blob,omitempty" cborgen:"blob,omitempty"` 14 Did string `json:"did" cborgen:"did"` 15 Error *string `json:"error,omitempty" cborgen:"error,omitempty"` 16 JobId string `json:"jobId" cborgen:"jobId"` 17 Message *string `json:"message,omitempty" cborgen:"message,omitempty"` 18 // progress: Progress within the current processing state. 19 Progress *int64 `json:"progress,omitempty" cborgen:"progress,omitempty"` 20 // state: The state of the video processing job. All values not listed as a known value indicate that the job is in process. 21 State string `json:"state" cborgen:"state"` 22}