-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.go
38 lines (32 loc) · 953 Bytes
/
alerts.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package openxbl
import (
"errors"
"time"
)
type Alert struct {
ID string `json:"id"`
Action string `json:"action"`
Path string `json:"path"`
ActorXuid string `json:"actorXuid"`
ActorGamertag string `json:"actorGamertag"`
ParentType string `json:"parentType"`
ParentPath string `json:"parentPath"`
OwnerXuid string `json:"ownerXuid"`
OwnerGamertag string `json:"ownerGamertag"`
Timestamp time.Time `json:"timestamp"`
Seen bool `json:"seen"`
RootPath string `json:"rootPath"`
ClubID string `json:"clubId"`
}
func (c *Client) GetAlerts() ([]*Alert, error) {
response := struct {
Alerts []*Alert `json:"alerts"`
}{}
if _, err := c.makeRequest("GET", "alerts", nil, &response); err != nil {
return nil, err
}
if len(response.Alerts) == 0 {
return nil, errors.New("failed to find alerts")
}
return response.Alerts, nil
}