From 15aebcb6d2914615b97321e980aee748156f2d82 Mon Sep 17 00:00:00 2001 From: Maria Tyschitskaya Date: Mon, 1 Nov 2021 16:25:47 +0300 Subject: [PATCH] add postback payload description in message --- message.go | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/message.go b/message.go index 233ffa2..250d410 100644 --- a/message.go +++ b/message.go @@ -130,12 +130,19 @@ type PostBack struct { Recipient Recipient `json:"-"` // Time is when the message was sent. Time time.Time `json:"-"` - // PostBack ID - Payload string `json:"payload"` + // PostBack Payload + Payload PostBackPayload `json:"payload"` // Optional referral info Referral Referral `json:"referral"` } +// PostBackPayload represents payload data in PostBack +type PostBackPayload struct { + Title string `json:"title"` + Payload string `json:"payload"` + Mid string `json:"mid"` +} + type AccountLinking struct { // Sender is who the message was sent from. Sender Sender `json:"-"`