All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gitlab.api.models.GitlabEmailonPushProperties Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
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