1
bot/models/proximity_alert_triggered.go

9 lines
240 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
package models
// ProximityAlertTriggered https://core.telegram.org/bots/api#proximityalerttriggered
type ProximityAlertTriggered struct {
Traveler User `json:"traveler"`
Watcher User `json:"watcher"`
Distance int `json:"distance"`
}