Class DeleteVoteInput
- java.lang.Object
-
- com.google.gerrit.extensions.api.changes.DeleteVoteInput
-
public class DeleteVoteInput extends Object
Input passed toDELETE /changes/[id]/reviewers/[id]/votes/[label]
.
-
-
Field Summary
Fields Modifier and Type Field Description boolean
ignoreAutomaticAttentionSetRules
Users in the attention set will not be added/removed from this endpoint call.String
label
NotifyHandling
notify
Who to send email notifications to after vote is deleted.Map<RecipientType,NotifyInfo>
notifyDetails
String
reason
Reason for this vote deletion.
-
Constructor Summary
Constructors Constructor Description DeleteVoteInput()
-
-
-
Field Detail
-
label
public String label
-
notify
public NotifyHandling notify
Who to send email notifications to after vote is deleted.
-
notifyDetails
public Map<RecipientType,NotifyInfo> notifyDetails
-
ignoreAutomaticAttentionSetRules
public boolean ignoreAutomaticAttentionSetRules
Users in the attention set will not be added/removed from this endpoint call. Normally, users are added to the attention set upon deletion of their vote by other users.
-
reason
public String reason
Reason for this vote deletion. Will appear in the change message.
-
-