org.gitlab.api.models.GitlabEmailonPushProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-gitlab-api Show documentation
Show all versions of java-gitlab-api Show documentation
A Java wrapper for the Gitlab Git Hosting Server API
package org.gitlab.api.models;
public class GitlabEmailonPushProperties {
private Integer disable_diffs;
private String recipients;
private Integer send_from_committer_email;
public Integer getDisableDiffs() {
return disable_diffs;
}
public void setDisableDiffs(Integer disable_diffs) {
this.disable_diffs = disable_diffs;
}
public String getRecipients() {
return recipients;
}
public void setRecipients(String recipients) {
this.recipients = recipients;
}
public Integer getSendFromCommitterEmail() {
return send_from_committer_email;
}
public void setSendFromCommitterEmail(Integer send_from_committer_email) {
this.send_from_committer_email = send_from_committer_email;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy