2016-04-13 09:14:23 +03:00
|
|
|
package messenger
|
|
|
|
|
2016-04-14 02:47:15 +03:00
|
|
|
// Action is used to determine what kind of message a webhook event is.
|
2016-04-13 09:14:23 +03:00
|
|
|
type Action int
|
|
|
|
|
|
|
|
const (
|
2016-04-14 02:47:15 +03:00
|
|
|
// UnknownAction means that the event was not able to be classified.
|
2016-04-13 09:14:23 +03:00
|
|
|
UnknownAction Action = iota - 1
|
2016-04-14 02:47:15 +03:00
|
|
|
// TextAction means that the event was a text message (May contain attachments).
|
2016-04-13 09:14:23 +03:00
|
|
|
TextAction
|
2016-04-14 02:47:15 +03:00
|
|
|
// DeliveryAction means that the event was a previous recipient reading their respective
|
|
|
|
// messages.
|
2016-04-13 12:12:23 +03:00
|
|
|
DeliveryAction
|
2016-04-13 09:14:23 +03:00
|
|
|
)
|