1
bot/models/web_app.go
2022-05-02 15:53:26 +03:00

18 lines
449 B
Go

package models
// WebAppData https://core.telegram.org/bots/api#webappdata
type WebAppData struct {
Data string `json:"data"`
ButtonText string `json:"button_text"`
}
// WebAppInfo https://core.telegram.org/bots/api#webappinfo
type WebAppInfo struct {
URL string `json:"url"`
}
// SentWebAppMessage https://core.telegram.org/bots/api#sentwebappmessage
type SentWebAppMessage struct {
InlineMessageID string `json:"inline_message_id"`
}