Files
go-ha/types/requestTypes.go
2022-11-06 15:00:39 -05:00

10 lines
198 B
Go

package types
type NotifyRequest struct {
// Which notify service to call, such as mobile_app_sams_iphone
ServiceName string
Message string
Title string
Data map[string]any
}