Merge branch 'main' into fix/doc-improvements

This commit is contained in:
kozabrada123 2023-07-31 09:13:33 +02:00
commit 7f65f9ca81
1 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use crate::types::{ use crate::types::{
@ -178,8 +180,11 @@ pub struct EmbedField {
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub struct Reaction { pub struct Reaction {
pub count: i32, pub count: u32,
pub burst_count: u32,
pub me: bool, pub me: bool,
pub burst_me: bool,
pub burst_colors: Vec<String>,
pub emoji: Emoji, pub emoji: Emoji,
} }