diff options
Diffstat (limited to 'src/types/GiftInfo.zig')
| -rw-r--r-- | src/types/GiftInfo.zig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/types/GiftInfo.zig b/src/types/GiftInfo.zig new file mode 100644 index 0000000..37b8cc6 --- /dev/null +++ b/src/types/GiftInfo.zig | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | const Gift = @import("Gift.zig"); | ||
| 2 | const MessageEntity = @import("MessageEntity.zig"); | ||
| 3 | |||
| 4 | gift: Gift, | ||
| 5 | owned_gift_id: ?[]const u8 = null, | ||
| 6 | convert_star_count: ?u64 = null, | ||
| 7 | prepaid_upgrade_star_count: ?u64 = null, | ||
| 8 | can_be_upgraded: bool = false, | ||
| 9 | text: ?[]const u8 = null, | ||
| 10 | entities: ?[]MessageEntity = null, | ||
| 11 | is_private: bool = false, | ||