// Generated by atproto-codegen. Do not edit.
//! Lexicon: app.bsky.graph.muteThread
use serde::{Deserialize, Serialize};
/// Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.
/// XRPC Procedure: app.bsky.graph.muteThread
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub root: String,
}