proto-blue-api 0.2.1

AT Protocol high-level API: agent, rich text, moderation, generated types
Documentation
// 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,
}