blob: d260d7463ac5a8a5fb0d16f028506c0450a91072 [file] [log] [blame] [edit]
// Code generated by cdpgen. DO NOT EDIT.
package log
// StartViolationsReportArgs represents the arguments for StartViolationsReport in the Log domain.
type StartViolationsReportArgs struct {
Config []ViolationSetting `json:"config"` // Configuration for violations.
}
// NewStartViolationsReportArgs initializes StartViolationsReportArgs with the required arguments.
func NewStartViolationsReportArgs(config []ViolationSetting) *StartViolationsReportArgs {
args := new(StartViolationsReportArgs)
args.Config = config
return args
}