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