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