// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::Chat;
use crate::types::MessageReactionCountUpdated;
use crate::types::ReactionCount;
impl MessageReactionCountUpdated {
/// This function creates an empty struct for the object MessageReactionCountUpdated.
pub fn new(chat: Chat, message_id: i64, date: i64, reactions: Vec<ReactionCount>) -> Self {
Self {
chat,
message_id,
date,
reactions,
}
}
}