#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConvoRemoveReactionInput {
pub convo_id: String,
pub message_id: String,
pub value: String,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ConvoRemoveReactionOutput {
pub message: crate::api::chat::bsky::ConvoDefsMessageView,
#[serde(flatten)]
pub extra: std::collections::HashMap<String, serde_json::Value>,
}
pub async fn convo_remove_reaction(
client: &crate::xrpc::Client,
input: &ConvoRemoveReactionInput,
) -> Result<ConvoRemoveReactionOutput, crate::xrpc::Error> {
client
.procedure("chat.bsky.convo.removeReaction", input)
.await
}