(extPropValue any)
| 120 | } |
| 121 | |
| 122 | func extParseOapiCodegenOnlyHonourGoName(extPropValue any) (bool, error) { |
| 123 | onlyHonourGoName, ok := extPropValue.(bool) |
| 124 | if !ok { |
| 125 | return false, fmt.Errorf("failed to convert type: %T", extPropValue) |
| 126 | } |
| 127 | return onlyHonourGoName, nil |
| 128 | } |