// Code generated by lexgen. DO NOT EDIT.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GraphMuteActorInput {
pub actor: crate::syntax::AtIdentifier,
/// Extra fields not defined in the schema.
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
/// GraphMuteActor — Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.
pub async fn graph_mute_actor(
client: &crate::xrpc::Client,
input: &GraphMuteActorInput,
) -> Result<(), crate::xrpc::Error> {
let _: serde_json::Value = client.procedure("app.bsky.graph.muteActor", input).await?;
Ok(())
}