| // 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 |
| } |