diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-03 22:09:19 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-03 22:09:19 +0500 |
| commit | 0e12c2998bd12bc008febc0b923775732cf6c775 (patch) | |
| tree | f927ed3c8bf769f25198098925377fe8ebf49f8f | |
| parent | 80380ff645a2b2d8de3b0f041231d2c150f68ba0 (diff) | |
feat: original_code field
| -rw-r--r-- | src/betterttv.rs | 2 |
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, |
