File size: 362 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
package nfymsg
// User provides information about a user for notifications.
type User struct {
ID string
Name string
URL string
}
// ScheduleOnCallUsers is a Message that indicates which users are
// currently on-call for a Schedule
type ScheduleOnCallUsers struct {
Base
ScheduleID string
ScheduleName string
ScheduleURL string
Users []User
}
|