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