atrium_api/app/bsky/feed/
postgate.rs#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct RecordData {
pub created_at: crate::types::string::Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub detached_embedding_uris: Option<Vec<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub embedding_rules: Option<Vec<crate::types::Union<RecordEmbeddingRulesItem>>>,
pub post: String,
}
pub type Record = crate::types::Object<RecordData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct DisableRuleData {}
pub type DisableRule = crate::types::Object<DisableRuleData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "$type")]
pub enum RecordEmbeddingRulesItem {
#[serde(rename = "app.bsky.feed.postgate#disableRule")]
DisableRule(Box<DisableRule>),
}