summaryrefslogtreecommitdiff
path: root/src/types/PreCheckoutQuery.zig
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-07-27 05:56:48 +0300
committerGravatar Uko Kokņevičs2024-07-27 05:58:51 +0300
commit98abaf3d19631f1280b83467d38f28b150a02a3a (patch)
treefdf3094c3c18421d9ee23c244a668f2e274a9b57 /src/types/PreCheckoutQuery.zig
parentSend a different GIF when bot gets added (diff)
downloadukkobot-98abaf3d19631f1280b83467d38f28b150a02a3a.tar.gz
ukkobot-98abaf3d19631f1280b83467d38f28b150a02a3a.tar.xz
ukkobot-98abaf3d19631f1280b83467d38f28b150a02a3a.zip
Add a default values to (hopefully) all nullable fields
Diffstat (limited to 'src/types/PreCheckoutQuery.zig')
-rw-r--r--src/types/PreCheckoutQuery.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types/PreCheckoutQuery.zig b/src/types/PreCheckoutQuery.zig
index 48e013f..fe80ce5 100644
--- a/src/types/PreCheckoutQuery.zig
+++ b/src/types/PreCheckoutQuery.zig
@@ -6,5 +6,5 @@ from: User,
6currency: []const u8, 6currency: []const u8,
7total_amount: u64, 7total_amount: u64,
8invoice_payload: []const u8, 8invoice_payload: []const u8,
9shipping_option_id: ?[]const u8, 9shipping_option_id: ?[]const u8 = null,
10order_info: ?OrderInfo, 10order_info: ?OrderInfo = null,