Add 'BotName' type to available types.

pull/10/head
OvyFlash 2023-10-16 20:24:40 +03:00
parent 9b085ce6a6
commit 48d380a129
1 changed files with 5 additions and 0 deletions

View File

@ -2227,6 +2227,11 @@ type BotCommandScope struct {
UserID int64 `json:"user_id,omitempty"`
}
//BotName represents the bot's name.
type BotName struct {
Name string `json:"name"`
}
// BotDescription represents the bot's description.
type BotDescription struct {
Description string `json:"description"`