From 5fbdc2863475bc08202ed4fb2189fa741cda5a71 Mon Sep 17 00:00:00 2001 From: Maria Tyschitskaya Date: Thu, 21 Oct 2021 12:51:52 +0300 Subject: [PATCH] add payload buttons description for receiving messages --- receiving.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/receiving.go b/receiving.go index 8d7a0c8..ea2c70a 100644 --- a/receiving.go +++ b/receiving.go @@ -118,6 +118,14 @@ type Payload struct { Title string `json:"title,omitempty"` // Coordinates is Lat/Long pair of location pin Coordinates *Coordinates `json:"coordinates,omitempty"` + TemplateType string `json:"template_type,omitempty"` + Buttons []Button `json:"buttons,omitempty"` +} + +type Button struct { + Type string `json:"type,omitempty"` + Title string `json:"title,omitempty"` + Payload string `json:"payload,omitempty"` } // Coordinates is a pair of latitude and longitude.