#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct NotificationPutPreferencesInput {
pub priority: bool,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn notification_put_preferences(
client: &crate::xrpc::Client,
input: &NotificationPutPreferencesInput,
) -> Result<(), crate::xrpc::Error> {
let _: serde_json::Value = client
.procedure("app.bsky.notification.putPreferences", input)
.await?;
Ok(())
}