shrike 0.1.1

AT Protocol library for Rust
Documentation
// Code generated by lexgen. DO NOT EDIT.

#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VideoGetJobStatusParams {
    pub job_id: String,
}

#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VideoGetJobStatusOutput {
    pub job_status: crate::api::app::bsky::VideoDefsJobStatus,
    /// Extra fields not defined in the schema.
    #[serde(flatten)]
    pub extra: std::collections::HashMap<String, serde_json::Value>,
}

/// VideoGetJobStatus — Get status details for a video processing job.
pub async fn video_get_job_status(
    client: &crate::xrpc::Client,
    params: &VideoGetJobStatusParams,
) -> Result<VideoGetJobStatusOutput, crate::xrpc::Error> {
    client.query("app.bsky.video.getJobStatus", params).await
}