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