From 1d59bfd18c37c2db65432b4d88deede2b5046884 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Thu, 10 Dec 2020 17:47:36 +0300 Subject: [PATCH] add title to payload --- receiving.go | 1 + 1 file changed, 1 insertion(+) diff --git a/receiving.go b/receiving.go index 4bb1543..d7bd3d7 100644 --- a/receiving.go +++ b/receiving.go @@ -113,6 +113,7 @@ type QuickReply struct { // Payload is the information on where an attachment is. type Payload struct { URL string `json:"url,omitempty"` + Title string `json:"title,omitempty"` // Coordinates is Lat/Long pair of location pin Coordinates *Coordinates `json:"coordinates,omitempty"` }