1
0
mirror of synced 2024-11-25 05:06:03 +03:00
mg-transport-telegram/event.go

10 lines
247 B
Go
Raw Normal View History

2018-05-28 18:08:15 +03:00
package main
type EventMessage struct {
ChannelID uint64 `json:"channel_id"`
ExternalID int `json:"external_id,omitempty"`
ChatID int64 `json:"chat_id"`
Message string `json:"message,omitempty"`
Type string `json:"type"`
}