mtg-price-bot/vk/structs.go
2019-05-11 17:53:02 +03:00

13 lines
281 B
Go

package vk
type MessageRequest struct {
Type string `json:"type"`
GroupId int64 `json:"group_id"`
Object UserMessage `json:"object"`
Secret string `json:"secret"`
}
type UserMessage struct {
Body string `json:"text"`
UserId int64 `json:"peer_id"`
}