guilded_model 0.1.0-dev.24

Guilded API models for the Guilded-rs ecosystem of crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The emote object.

use serde::{Deserialize, Serialize};

use crate::id::{marker::EmoteMarker, Id};

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Emote {
    pub id: Id<EmoteMarker>,
    pub name: String,
    pub url: String,
}