atrium_api/app/bsky/video/
upload_video.rs1pub const NSID: &str = "app.bsky.video.uploadVideo";
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct OutputData {
7 pub job_status: crate::app::bsky::video::defs::JobStatus,
8}
9pub type Output = crate::types::Object<OutputData>;
10#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
11#[serde(tag = "error", content = "message")]
12pub enum Error {}
13impl std::fmt::Display for Error {
14 fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
15 Ok(())
16 }
17}