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

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

There is a newer version: 4.1.1
Show newest version
package org.gitlab.api.models;

import com.fasterxml.jackson.annotation.JsonProperty;

public class GitlabSimpleRepositoryFile {
    /*
   "file_name": "app/project.rb",
   "branch_name": "master"
     */

    @JsonProperty("file_path")
    private String filePath;

    @JsonProperty("branch")
    private String branchName;

    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    public String getBranchName() {
        return branchName;
    }

    public void setBranchName(String branchName) {
        this.branchName = branchName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy