atrium_api/app/bsky/video/
defs.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
//!Definitions for the `app.bsky.video.defs` namespace.
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct JobStatusData {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub blob: Option<crate::types::BlobRef>,
    pub did: crate::types::string::Did,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub error: Option<String>,
    pub job_id: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<String>,
    ///Progress within the current processing state.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub progress: Option<crate::types::LimitedU8<100u8>>,
    ///The state of the video processing job. All values not listed as a known value indicate that the job is in process.
    pub state: String,
}
pub type JobStatus = crate::types::Object<JobStatusData>;