rive-models 1.2.1

Revolt API models for the Rive ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;

#[derive(Deserialize, Debug, Clone)]
/// Account Strike
pub struct AccountStrike {
    /// Strike Id
    #[serde(rename = "_id")]
    pub id: String,

    /// Id of reported user
    pub user_id: String,

    /// Attached reason
    pub reason: String,
}