summaryrefslogtreecommitdiff
path: root/src/types/Gift.zig
diff options
context:
space:
mode:
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,