// Generated by atproto-codegen. Do not edit.
//! Lexicon: chat.bsky.convo.addReaction
use serde::{Deserialize, Serialize};
/// Adds an emoji reaction to a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in a single reaction.
/// XRPC Procedure: chat.bsky.convo.addReaction
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Input {
pub convo_id: String,
pub message_id: String,
pub value: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Output {
pub message: crate::chat::bsky::convo::defs::MessageView,
}