conogram 0.2.19

An async wrapper for Telegram Bot API
Documentation
use serde::{Deserialize, Serialize};

use crate::entities::{chat::Chat, reaction_count::ReactionCount};

/// This object represents reaction changes on a message with anonymous reactions.
///
/// API Reference: [link](https://core.telegram.org/bots/api/#messagereactioncountupdated)
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub struct MessageReactionCountUpdated {
    /// The chat containing the message
    pub chat: Box<Chat>,

    /// Unique message identifier inside the chat
    pub message_id: i64,

    /// Date of the change in Unix time
    pub date: i64,

    /// List of reactions that are present on the message
    pub reactions: Vec<ReactionCount>,
}

// Divider: all content below this line will be preserved after code regen