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: tools.ozone.safelink.removeRule

use serde::{Deserialize, Serialize};

/// Remove an existing URL safety rule
/// XRPC Procedure: tools.ozone.safelink.removeRule
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub comment: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_by: Option<String>,
    pub pattern: crate::tools::ozone::safelink::defs::PatternType,
    pub url: String,
}

pub type Output = crate::tools::ozone::safelink::defs::Event;