From 9665b6315e028483f4db906a84e0c618157cc2be Mon Sep 17 00:00:00 2001 From: Uko Kokņevičs Date: Sat, 16 Aug 2025 13:41:34 +0300 Subject: Add some new stuff to types --- src/types/Gift.zig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/types/Gift.zig (limited to 'src/types/Gift.zig') 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 @@ +const Chat = @import("Chat.zig"); +const Sticker = @import("Sticker.zig"); + +id: []const u8, +sticker: Sticker, +star_count: u64, +upgrade_star_count: ?u64 = null, +total_count: ?u64 = null, +remaining_count: ?u64 = null, +publisher_chat: ?Chat = null, -- cgit v1.2.3