summaryrefslogtreecommitdiff
path: root/src/types/Gift.zig
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-08-16 13:41:34 +0300
committerGravatar Uko Kokņevičs2025-08-16 13:41:34 +0300
commit9665b6315e028483f4db906a84e0c618157cc2be (patch)
treee15085246a024ed2bc28e27ad2680f6632cbd168 /src/types/Gift.zig
parentMove bot configuration to SQL land (diff)
downloadukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.gz
ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.xz
ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.zip
Add some new stuff to types
Diffstat (limited to 'src/types/Gift.zig')
-rw-r--r--src/types/Gift.zig10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types/Gift.zig b/src/types/Gift.zig
new file mode 100644
index 0000000..3b146d5
--- /dev/null
+++ b/src/types/Gift.zig
@@ -0,0 +1,10 @@
1const Chat = @import("Chat.zig");
2const Sticker = @import("Sticker.zig");
3
4id: []const u8,
5sticker: Sticker,
6star_count: u64,
7upgrade_star_count: ?u64 = null,
8total_count: ?u64 = null,
9remaining_count: ?u64 = null,
10publisher_chat: ?Chat = null,