MCPcopy Index your code
hub / github.com/google/go-github / GetName

Method GetName

github/github-accessors.go:1514–1519  ·  view source on GitHub ↗

GetName returns the Name field if it's non-nil, zero value otherwise.

()

Source from the content-addressed store, hash-verified

1512
1513// GetName returns the Name field if it's non-nil, zero value otherwise.
1514func (a *App) GetName() string {
1515 if a == nil || a.Name == nil {
1516 return ""
1517 }
1518 return *a.Name
1519}
1520
1521// GetNodeID returns the NodeID field if it's non-nil, zero value otherwise.
1522func (a *App) GetNodeID() string {

Callers 9

TestApp_GetNameFunction · 0.95
mainFunction · 0.45
mainFunction · 0.45
getDescriptionsFunction · 0.45
createSignatureMessageFunction · 0.45

Calls

no outgoing calls