MCPcopy Create free account
hub / github.com/UiPath/uipathcli / getSummary

Method getSummary

parser/openapi_parser.go:20–28  ·  view source on GitHub ↗
(extensions map[string]interface{})

Source from the content-addressed store, hash-verified

18type OpenApiParser struct{}
19
20func (p OpenApiParser) getSummary(extensions map[string]interface{}) string {
21 name := extensions["summary"]
22 switch v := name.(type) {
23 case string:
24 return v
25 default:
26 return ""
27 }
28}
29
30func (p OpenApiParser) getCustomName(extensions map[string]interface{}) string {
31 name := extensions[CustomNameExtension]

Callers 1

getCategoryTextMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected