...
1
9
10 package openapi
11
12 type DevfileGet200Response struct {
13 Content string `json:"content,omitempty"`
14 }
15
16
17 func AssertDevfileGet200ResponseRequired(obj DevfileGet200Response) error {
18 return nil
19 }
20
21
22
23 func AssertRecurseDevfileGet200ResponseRequired(objSlice interface{}) error {
24 return AssertRecurseInterfaceRequired(objSlice, func(obj interface{}) error {
25 aDevfileGet200Response, ok := obj.(DevfileGet200Response)
26 if !ok {
27 return ErrTypeAssertionError
28 }
29 return AssertDevfileGet200ResponseRequired(aDevfileGet200Response)
30 })
31 }
32
View as plain text