...
1
9
10 package openapi
11
12 type DevstateApplyCommandPostRequest struct {
13
14
15 Name string `json:"name,omitempty"`
16
17 Component string `json:"component,omitempty"`
18 }
19
20
21 func AssertDevstateApplyCommandPostRequestRequired(obj DevstateApplyCommandPostRequest) error {
22 return nil
23 }
24
25
26
27 func AssertRecurseDevstateApplyCommandPostRequestRequired(objSlice interface{}) error {
28 return AssertRecurseInterfaceRequired(objSlice, func(obj interface{}) error {
29 aDevstateApplyCommandPostRequest, ok := obj.(DevstateApplyCommandPostRequest)
30 if !ok {
31 return ErrTypeAssertionError
32 }
33 return AssertDevstateApplyCommandPostRequestRequired(aDevstateApplyCommandPostRequest)
34 })
35 }
36
View as plain text