diff options
| author | 2024-07-20 17:22:25 +0300 | |
|---|---|---|
| committer | 2024-07-20 17:22:25 +0300 | |
| commit | c70ffd095a6de5cd5b872796a0d82a8c5afc1511 (patch) | |
| tree | 56183274b05a294e357bad4d06b523472a1c4a4a /src/types/PreCheckoutQuery.zig | |
| download | ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.gz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.xz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.zip | |
Initial commit
Diffstat (limited to 'src/types/PreCheckoutQuery.zig')
| -rw-r--r-- | src/types/PreCheckoutQuery.zig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types/PreCheckoutQuery.zig b/src/types/PreCheckoutQuery.zig new file mode 100644 index 0000000..48e013f --- /dev/null +++ b/src/types/PreCheckoutQuery.zig | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | const OrderInfo = @import("OrderInfo.zig"); | ||
| 2 | const User = @import("User.zig"); | ||
| 3 | |||
| 4 | id: []const u8, | ||
| 5 | from: User, | ||
| 6 | currency: []const u8, | ||
| 7 | total_amount: u64, | ||
| 8 | invoice_payload: []const u8, | ||
| 9 | shipping_option_id: ?[]const u8, | ||
| 10 | order_info: ?OrderInfo, | ||