1
0
Fork 0
mirror of synced 2025-04-04 05:33:35 +03:00

Merge pull request #23 from Neur0toxine/add-reactions-messageinfo

add reactions to MessageInfo
This commit is contained in:
Pavel 2025-03-21 13:50:29 +03:00 committed by GitHub
commit 5c54b47713
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

7
go.mod
View file

@ -1,8 +1,11 @@
module github.com/retailcrm/messenger
require (
github.com/stretchr/testify v1.2.2
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.2.2
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
)

View file

@ -35,6 +35,8 @@ type MessageInfo struct {
// Delivery is the contents of a message if it is a DeliveryAction.
// Nil if it is not a DeliveryAction.
Delivery *Delivery `json:"delivery"`
// Reaction represents reaction to Instagram message.
Reaction *IGMessageReaction `json:"reaction,omitempty"`
PostBack *PostBack `json:"postback"`