mirror of
https://github.com/Xevion/go-ha.git
synced 2025-12-07 20:07:13 -06:00
10 lines
198 B
Go
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
|
|
}
|