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

10 lines
247 B
Go

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"`
}