2022-04-29 17:21:42 +08:00
|
|
|
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"`
|
|
|
|
}
|
2022-05-02 20:53:26 +08:00
|
|
|
|
|
|
|
// SentWebAppMessage https://core.telegram.org/bots/api#sentwebappmessage
|
|
|
|
type SentWebAppMessage struct {
|
|
|
|
InlineMessageID string `json:"inline_message_id"`
|
|
|
|
}
|