Files
tecamino-json_data/models/subscribe.go
2025-04-26 23:14:50 +02:00

12 lines
351 B
Go

package models
type Subscribe struct {
Path string `json:"path"`
Depth uint `json:"depth,omitempty"`
Drivers *Drivers `json:"drivers,omitempty"`
Driver string `json:"driver,omitempty"`
OnCreate bool `json:"onCreate,omitempty"`
OnDelete bool `json:"onDelete,omitempty"`
OnChange bool `json:"onChange,omitempty"`
}