#[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,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
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
}