org.gitlab.api.models.GitlabRelease 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;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GitlabRelease {
@JsonProperty("tag_name")
private String tagName;
@JsonProperty("description")
private String description;
public String getTagName() {
return tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}