deprecated-oc-search/models/workflow/executionschedule.go

12 lines
273 B
Go
Raw Permalink Normal View History

2023-08-26 22:04:56 +02:00
package models
import "time"
// ExecutionSchedule an execution unit or a set of steps
type ExecutionSchedule struct {
Name string `json:"name"`
Start time.Time `json:"start"`
Stop time.Time `json:"stop"`
Reccurence string `json:"reccurence"`
}