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

Method GetMerged

github/github-accessors.go:29130–29135  ·  view source on GitHub ↗

GetMerged returns the Merged field if it's non-nil, zero value otherwise.

()

Source from the content-addressed store, hash-verified

29128
29129// GetMerged returns the Merged field if it's non-nil, zero value otherwise.
29130func (p *PullRequest) GetMerged() bool {
29131 if p == nil || p.Merged == nil {
29132 return false
29133 }
29134 return *p.Merged
29135}
29136
29137// GetMergedAt returns the MergedAt field if it's non-nil, zero value otherwise.
29138func (p *PullRequest) GetMergedAt() Timestamp {

Calls

no outgoing calls