// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.graph.muteActor
use serde::{Deserialize, Serialize};
/// Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.
/// XRPC Procedure: app.bsky.graph.muteActor
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub actor: String,
}