1
0
mirror of synced 2024-11-22 04:46:05 +03:00

Add documentation to receiving

This commit is contained in:
Harrison 2016-04-14 10:07:23 +10:00
parent c2ae2a3f30
commit 99c1be7fa1

View File

@ -1,37 +1,60 @@
package messenger package messenger
// Receive is the format in which webhook events are sent.
type Receive struct { type Receive struct {
Object string `json:"object"` // Object should always be `page`. (I don't quite understand why)
Entry []Entry `json:"entry"` Object string `json:"object"`
// Entry is all of the different messenger types which were
// sent in this event.
Entry []Entry `json:"entry"`
} }
// Entry is a batch of events which were sent in this webhook trigger.
type Entry struct { type Entry struct {
ID int64 `json:"id"` // ID is the ID of the batch.
Time int64 `json:"time"` ID int64 `json:"id"`
// Time is when the batch was sent.
Time int64 `json:"time"`
// Messaging is the events that were sent in this Entry
Messaging []MessageInfo `json:"messaging"` Messaging []MessageInfo `json:"messaging"`
} }
// MessageInfo is an event that is fired by the webhook.
type MessageInfo struct { type MessageInfo struct {
Sender Sender `json:"sender"` // Sender is who the event was sent from.
Sender Sender `json:"sender"`
// Recipient is who the event was sent to.
Recipient Recipient `json:"recipient"` Recipient Recipient `json:"recipient"`
Timestamp int64 `json:"timestamp"` // Timestamp is the true time the event was triggered.
Message *Message `json:"message"` Timestamp int64 `json:"timestamp"`
Delivery *Delivery `json:"delivery"` // Message is the contents of a message if it is a MessageAction.
// Nil if it is not a MessageAction.
Message *Message `json:"message"`
// Delivery is the contents of a message if it is a DeliveryAction.
// Nil if it is not a DeliveryAction.
Delivery *Delivery `json:"delivery"`
} }
// Sender is who the message was sent from.
type Sender struct { type Sender struct {
ID int64 `json:"id"` ID int64 `json:"id"`
} }
// Recipient is who the message was sent to.
type Recipient struct { type Recipient struct {
ID int64 `json:"id"` ID int64 `json:"id"`
} }
// Attachment is a file which used in a message.
type Attachment struct { type Attachment struct {
Type string `json:"type"` // Type is what type the message is. (image, video or audio)
Type string `json:"type"`
// Payload is the information for the file which was sent in the attachment.
Payload Payload `json:"payload"` Payload Payload `json:"payload"`
} }
// Payload is the information on where an attachment is.
type Payload struct { type Payload struct {
// URL is where the attachment resides on the internet.
URL string `json:"url"` URL string `json:"url"`
} }