// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
use crate::types::ReactionType;
use serde::{Deserialize, Serialize};
/// Represents a reaction added to a message along with the number of times it was added.
/// <https://core.telegram.org/bots/api#reactioncount>
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ReactionCount {
/// Type of the reaction
pub r#type: ReactionType,
/// Number of times the reaction was added
pub total_count: i64,
}