summaryrefslogtreecommitdiff
path: root/src/types/ShippingQuery.zig
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-07-20 17:22:25 +0300
committerGravatar Uko Kokņevičs2024-07-20 17:22:25 +0300
commitc70ffd095a6de5cd5b872796a0d82a8c5afc1511 (patch)
tree56183274b05a294e357bad4d06b523472a1c4a4a /src/types/ShippingQuery.zig
downloadukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.gz
ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.xz
ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.zip
Initial commit
Diffstat (limited to 'src/types/ShippingQuery.zig')
-rw-r--r--src/types/ShippingQuery.zig7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/ShippingQuery.zig b/src/types/ShippingQuery.zig
new file mode 100644
index 0000000..15abcda
--- /dev/null
+++ b/src/types/ShippingQuery.zig
@@ -0,0 +1,7 @@
1const ShippingAddress = @import("ShippingAddress.zig");
2const User = @import("User.zig");
3
4id: []const u8,
5from: User,
6invoice_payload: []const u8,
7shipping_address: ShippingAddress,