...
1
9
10 package openapi
11
12 type DevstateExecCommandPostRequest struct {
13
14
15 Name string `json:"name,omitempty"`
16
17 Component string `json:"component,omitempty"`
18
19 CommandLine string `json:"commandLine,omitempty"`
20
21 WorkingDir string `json:"workingDir,omitempty"`
22
23 HotReloadCapable bool `json:"hotReloadCapable,omitempty"`
24 }
25
26
27 func AssertDevstateExecCommandPostRequestRequired(obj DevstateExecCommandPostRequest) error {
28 return nil
29 }
30
31
32
33 func AssertRecurseDevstateExecCommandPostRequestRequired(objSlice interface{}) error {
34 return AssertRecurseInterfaceRequired(objSlice, func(obj interface{}) error {
35 aDevstateExecCommandPostRequest, ok := obj.(DevstateExecCommandPostRequest)
36 if !ok {
37 return ErrTypeAssertionError
38 }
39 return AssertDevstateExecCommandPostRequestRequired(aDevstateExecCommandPostRequest)
40 })
41 }
42
View as plain text