Class ReviewResult
- java.lang.Object
-
- com.google.gerrit.extensions.api.changes.ReviewResult
-
public class ReviewResult extends Object
Result object representing the outcome of a review request.
-
-
Field Summary
Fields Modifier and Type Field Description String
error
Error message for non-200 responses.Map<String,Short>
labels
Map of labels to values after the review was posted.Boolean
ready
Boolean indicating whether the change was moved out of WIP by this review.Map<String,AddReviewerResult>
reviewers
Map of account or group identifier to outcome of adding as a reviewer.
-
Constructor Summary
Constructors Constructor Description ReviewResult()
-
-
-
Field Detail
-
labels
public Map<String,Short> labels
Map of labels to values after the review was posted. Null if any reviewer additions were rejected.
-
reviewers
public Map<String,AddReviewerResult> reviewers
Map of account or group identifier to outcome of adding as a reviewer. Null if no reviewer additions were requested.
-
ready
public Boolean ready
Boolean indicating whether the change was moved out of WIP by this review. Either true or null.
-
error
public String error
Error message for non-200 responses.
-
-