2013-02-20 23:43:01 -05:00
|
|
|
package asink
|
|
|
|
|
2013-02-22 00:06:10 -05:00
|
|
|
type APIStatus uint32
|
|
|
|
|
|
|
|
const (
|
|
|
|
SUCCESS = 0 + iota
|
|
|
|
ERROR
|
|
|
|
)
|
|
|
|
|
2013-02-20 23:43:01 -05:00
|
|
|
type APIResponse struct {
|
2013-02-22 00:06:10 -05:00
|
|
|
Status APIStatus
|
2013-02-20 23:43:01 -05:00
|
|
|
Explanation string
|
2013-02-22 00:06:10 -05:00
|
|
|
Events []*Event
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventList struct {
|
|
|
|
Events []*Event
|
2013-02-20 23:43:01 -05:00
|
|
|
}
|