Add support for receiving chat replies

This commit is contained in:
Sam
2019-10-31 10:37:37 -04:00
parent b00e56e8dd
commit 972d197182

View File

@ -123,6 +123,8 @@ type edit struct {
type text struct { type text struct {
Body string `json:"body"` Body string `json:"body"`
Payments []payments `json:"payments"` Payments []payments `json:"payments"`
ReplyTo int `json:"replyTo"`
ReplyToUID string `json:"replyToUID"`
UserMentions []userMentions `json:"userMentions"` UserMentions []userMentions `json:"userMentions"`
TeamMentions []teamMentions `json:"teamMentions"` TeamMentions []teamMentions `json:"teamMentions"`
} }