botrs 0.12.2

A Rust QQ Bot framework based on QQ Guild Bot API
Documentation
use crate::models::user::User;
use serde::{Deserialize, Serialize};
use serde_json::Value;

pub type ReactionUser = User;

/// Reaction users response structure
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReactionUsers {
    /// List of users who reacted
    #[serde(default)]
    pub users: Vec<User>,
    /// Pagination cookie for next page
    pub cookie: Option<String>,
    /// Whether this is the last page
    #[serde(default)]
    pub is_end: bool,
}

pub type MessageReactionUsers = ReactionUsers;

impl ReactionUsers {
    /// Create a new ReactionUsers instance from JSON data
    pub fn new(data: &Value) -> crate::Result<Self> {
        Ok(serde_json::from_value(data.clone())?)
    }

    /// Check if there are more pages available
    pub fn has_more_pages(&self) -> bool {
        !self.is_end
    }

    /// Get the number of users in this page
    pub fn user_count(&self) -> usize {
        self.users.len()
    }
}