Add 'BotName' type to available types.
parent
9b085ce6a6
commit
48d380a129
5
types.go
5
types.go
|
@ -2227,6 +2227,11 @@ type BotCommandScope struct {
|
||||||
UserID int64 `json:"user_id,omitempty"`
|
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.
|
// BotDescription represents the bot's description.
|
||||||
type BotDescription struct {
|
type BotDescription struct {
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
|
|
Loading…
Reference in New Issue