Package com.spotify.github.v3.prs
Interface Review
-
- All Known Implementing Classes:
ImmutableReview
@Immutable public interface ReviewPull request review resource represents data returned by a single PR review get operation. It contains all the fields fromReviewentity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<String>body()Body.StringcommitId()Commit sha the review refers toURIhtmlUrl()Html URL.Integerid()Id.ReviewLinkslinks()Hypermedia links.URIpullRequestUrl()Pull Request URL.Stringstate()State.Optional<GitHubInstant>submittedAt()Submitted at.Useruser()User.
-
-
-
Method Detail
-
id
@Nullable Integer id()
Id.
-
user
@Nullable User user()
User.
-
submittedAt
Optional<GitHubInstant> submittedAt()
Submitted at.
-
state
@Nullable String state()
State.
-
htmlUrl
@Nullable URI htmlUrl()
Html URL.
-
pullRequestUrl
@Nullable URI pullRequestUrl()
Pull Request URL.
-
links
@Nullable ReviewLinks links()
Hypermedia links.
-
commitId
@Nullable String commitId()
Commit sha the review refers to
-
-