SimpleCloudNotifier/server/models/compat.go

12 lines
330 B
Go
Raw Normal View History

2022-11-13 19:17:07 +01:00
package models
type CompatMessage struct {
2022-11-20 01:28:32 +01:00
Title string `json:"title"`
Body string `json:"body"`
Priority int `json:"priority"`
Timestamp int64 `json:"timestamp"`
UserMessageID *string `json:"usr_msg_id"`
SCNMessageID int64 `json:"scn_msg_id"`
Trimmed *bool `json:"trimmed"`
2022-11-13 19:17:07 +01:00
}