| 36 | } |
| 37 | |
| 38 | type PullRequestReview struct { |
| 39 | ID string `json:"id"` |
| 40 | Author CommentAuthor `json:"author"` |
| 41 | AuthorAssociation string `json:"authorAssociation"` |
| 42 | Body string `json:"body"` |
| 43 | SubmittedAt *time.Time `json:"submittedAt"` |
| 44 | IncludesCreatedEdit bool `json:"includesCreatedEdit"` |
| 45 | ReactionGroups ReactionGroups `json:"reactionGroups"` |
| 46 | State string `json:"state"` |
| 47 | URL string `json:"url,omitempty"` |
| 48 | Commit Commit `json:"commit"` |
| 49 | } |
| 50 | |
| 51 | func (prr PullRequestReview) Identifier() string { |
| 52 | return prr.ID |
nothing calls this directly
no outgoing calls
no test coverage detected