forked from jmug/stoatchat
26 lines
659 B
Rust
26 lines
659 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
/// Information about what owns this emoji
|
|
#[derive(Serialize, Deserialize, JsonSchema, Debug, Clone)]
|
|
#[serde(tag = "type")]
|
|
pub enum EmojiParent {
|
|
Server { id: String },
|
|
Detached,
|
|
}
|
|
|
|
/// Representation of an Emoji on Revolt
|
|
#[derive(Serialize, Deserialize, JsonSchema, Debug, Clone)]
|
|
pub struct Emoji {
|
|
/// Unique Id
|
|
#[serde(rename = "_id")]
|
|
pub id: String,
|
|
/// What owns this emoji
|
|
pub parent: EmojiParent,
|
|
/// Uploader user id
|
|
pub creator_id: String,
|
|
/// Emoji name
|
|
pub name: String,
|
|
/// Whether the emoji is animated
|
|
pub animated: bool,
|
|
}
|