// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: sh.weaver.publish.blob // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. ///A simple record referencing a file hosted on a PDS #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct Blob<'a> { ///Reference to the uploaded file #[serde(borrow)] pub upload: jacquard_common::types::blob::Blob<'a>, } impl jacquard_common::types::collection::Collection for Blob<'_> { const NSID: &'static str = "sh.weaver.publish.blob"; }