2021-01-26 11:49:37 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import "github.com/status-im/status-go/protocol/common"
|
|
|
|
|
|
|
|
type MessageNotificationBody struct {
|
2021-01-26 11:49:50 +00:00
|
|
|
Message *common.Message `json:"message"`
|
|
|
|
Contact *Contact `json:"contact"`
|
|
|
|
Chat *Chat `json:"chat"`
|
2021-01-26 11:49:37 +00:00
|
|
|
}
|