// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.feed.postgate
use serde::{Deserialize, Serialize};
/// Disables embedding of this post.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct DisableRule {}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Main {
pub created_at: String,
#[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<serde_json::Value>>,
pub post: String,
}