summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-03 22:09:19 +0500
committerilotterytea <iltsu@alright.party>2025-04-03 22:09:19 +0500
commit0e12c2998bd12bc008febc0b923775732cf6c775 (patch)
treef927ed3c8bf769f25198098925377fe8ebf49f8f
parent80380ff645a2b2d8de3b0f041231d2c150f68ba0 (diff)
feat: original_code field
-rw-r--r--src/betterttv.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/betterttv.rs b/src/betterttv.rs
index 23ae608..236699a 100644
--- a/src/betterttv.rs
+++ b/src/betterttv.rs
@@ -8,6 +8,8 @@ use crate::emotes::RetrieveEmoteAPI;
pub struct BetterTTVEmote {
pub id: String,
pub code: String,
+ #[serde(rename = "originalCode")]
+ pub original_code: Option<String>,
#[serde(rename = "imageType")]
pub image_type: String,
pub animated: bool,