```c# if (update.Type == UpdateType.Message) chatId = update.Message.Chat.Id; ``` but how handle all other types? ```c# if (update.Type != UpdateType.Message) { chatId = ???; await bot.SendMessageAsync(chatId, "Message is not a message-type"); } ```