Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
362 Bytes
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
}