add postback payload description in message
This commit is contained in:
parent
11b08a40b7
commit
15aebcb6d2
1 changed files with 9 additions and 2 deletions
11
message.go
11
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:"-"`
|
||||
|
|
Loading…
Add table
Reference in a new issue