<!-- Please read and follow: - If this is a question on how to use the library, please reach out to the telegram group linked in the README.md - If this is a bug or feature request, fill the form below with as much detail as possible. Remove fields which aren't relevant to you. --> # Description of the problem / feature request This is the method signature of 'SendMessage' function of Bot: ``` func (bot *Bot) SendMessage(chatId int64, text string, opts *SendMessageOpts) (*Message, error) ``` And the description of 'chatId' input parameter: ``` - chatId (type int64): Unique identifier for the target chat or username of the target channel (in the format @channelusername) ``` We have no way to pass channel username (which is a string), but only chat ID is supported. # Feature requests Fix the generation tool to generate correct 'SendMessage' implementation code that accepts 'chatId' as integer or string.