2025-02-24 20:31:21 +00:00
|
|
|
package android
|
|
|
|
|
|
2025-02-26 22:20:02 +00:00
|
|
|
type NotificationType string
|
|
|
|
|
|
|
|
|
|
const (
|
2025-02-27 21:16:32 +00:00
|
|
|
PubSubTest NotificationType = "test"
|
2025-02-26 22:20:02 +00:00
|
|
|
PubSubEnrollment NotificationType = "ENROLLMENT"
|
|
|
|
|
PubSubStatusReport NotificationType = "STATUS_REPORT"
|
|
|
|
|
PubSubCommand NotificationType = "COMMAND"
|
|
|
|
|
PubSubUsageLogs NotificationType = "USAGE_LOGS"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type DeviceState string
|
|
|
|
|
|
2025-02-24 20:31:21 +00:00
|
|
|
const (
|
2025-02-26 22:20:02 +00:00
|
|
|
DeviceStateDeleted DeviceState = "DELETED"
|
2025-02-24 20:31:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type PubSubMessage struct {
|
|
|
|
|
Attributes map[string]string `json:"attributes"`
|
|
|
|
|
Data string `json:"data"`
|
|
|
|
|
}
|