diff options
Diffstat (limited to 'src/types/InlineKeyboardButton.zig')
| -rw-r--r-- | src/types/InlineKeyboardButton.zig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/types/InlineKeyboardButton.zig b/src/types/InlineKeyboardButton.zig new file mode 100644 index 0000000..be156b4 --- /dev/null +++ b/src/types/InlineKeyboardButton.zig | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | const CallbackGame = @import("CallbackGame.zig"); | ||
| 2 | const LoginUrl = @import("LoginUrl.zig"); | ||
| 3 | const SwitchInlineQueryChosenChat = @import("SwitchInlineQueryChosenChat.zig"); | ||
| 4 | const WebAppInfo = @import("WebAppInfo.zig"); | ||
| 5 | |||
| 6 | text: []const u8, | ||
| 7 | url: ?[]const u8 = null, | ||
| 8 | callback_data: ?[]const u8 = null, | ||
| 9 | web_app: ?WebAppInfo = null, | ||
| 10 | login_url: ?LoginUrl = null, | ||
| 11 | switch_inline_query: ?[]const u8 = null, | ||
| 12 | switch_inline_query_current_chat: ?[]const u8 = null, | ||
| 13 | switch_inline_query_chosen_chat: ?SwitchInlineQueryChosenChat = null, | ||
| 14 | callback_game: ?CallbackGame = null, | ||
| 15 | pay: bool = false, | ||