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

Method GetBody

github/github-accessors.go:19002–19007  ·  view source on GitHub ↗

GetBody returns the Body field if it's non-nil, zero value otherwise.

()

Source from the content-addressed store, hash-verified

19000
19001// GetBody returns the Body field if it's non-nil, zero value otherwise.
19002func (i *Issue) GetBody() string {
19003 if i == nil || i.Body == nil {
19004 return ""
19005 }
19006 return *i.Body
19007}
19008
19009// GetClosedAt returns the ClosedAt field if it's non-nil, zero value otherwise.
19010func (i *Issue) GetClosedAt() Timestamp {

Callers 3

TestIssue_GetBodyFunction · 0.95

Calls

no outgoing calls

Tested by 3

TestIssue_GetBodyFunction · 0.76