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/EditMessageTextParams.zig | |
| download | ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.gz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.xz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.zip | |
Initial commit
Diffstat (limited to 'src/types/EditMessageTextParams.zig')
| -rw-r--r-- | src/types/EditMessageTextParams.zig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/types/EditMessageTextParams.zig b/src/types/EditMessageTextParams.zig new file mode 100644 index 0000000..3e7701f --- /dev/null +++ b/src/types/EditMessageTextParams.zig | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | const InlineKeyboardMarkup = @import("InlineKeyboardMarkup.zig"); | ||
| 2 | const LinkPreviewOptions = @import("LinkPreviewOptions.zig"); | ||
| 3 | const MessageEntity = @import("MessageEntity.zig"); | ||
| 4 | const ParseMode = @import("parse_mode.zig").ParseMode; | ||
| 5 | |||
| 6 | business_connection_id: ?[]const u8 = null, | ||
| 7 | // TODO: Integer or String | ||
| 8 | chat_id: i64, | ||
| 9 | message_id: u64, | ||
| 10 | // TODO: Make a different call for this bcs it returns just true :D | ||
| 11 | // inline_message_id: ?u64 = null, | ||
| 12 | text: []const u8, | ||
| 13 | parse_mode: ?ParseMode = null, | ||
| 14 | entities: ?[]MessageEntity = null, | ||
| 15 | link_preview_options: ?LinkPreviewOptions = null, | ||
| 16 | reply_markup: ?InlineKeyboardMarkup = null, | ||