2016-04-13 09:14:23 +03:00
|
|
|
package messenger
|
|
|
|
|
|
|
|
type Receive struct {
|
|
|
|
Object string `json:"object"`
|
|
|
|
Entry []Entry `json:"entry"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Entry struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
Time int64 `json:"time"`
|
|
|
|
Messaging []MessageInfo `json:"messaging"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessageInfo struct {
|
2016-04-13 12:36:38 +03:00
|
|
|
Sender Sender `json:"sender"`
|
|
|
|
Recipient Recipient `json:"recipient"`
|
|
|
|
Timestamp int64 `json:"timestamp"`
|
|
|
|
Message *Message `json:"message"`
|
|
|
|
Delivery *Delivery `json:"delivery"`
|
2016-04-13 09:14:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type Sender struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Recipient struct {
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
}
|