From 972d197182a7b71f8a8f017ec0286538acebfa33 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 31 Oct 2019 10:37:37 -0400 Subject: [PATCH] Add support for receiving chat replies --- types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types.go b/types.go index fe282cf..6429159 100644 --- a/types.go +++ b/types.go @@ -123,6 +123,8 @@ type edit struct { type text struct { Body string `json:"body"` Payments []payments `json:"payments"` + ReplyTo int `json:"replyTo"` + ReplyToUID string `json:"replyToUID"` UserMentions []userMentions `json:"userMentions"` TeamMentions []teamMentions `json:"teamMentions"` }