io.apicurio.registry.rest.v3.beans.CreateBranch Maven / Gradle / Ivy
package io.apicurio.registry.rest.v3.beans;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Root Type for CreateBranch
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"description",
"branchId",
"versions"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class CreateBranch {
@JsonProperty("description")
private String description;
/**
* The ID of a single artifact branch.
* (Required)
*
*/
@JsonProperty("branchId")
@JsonPropertyDescription("The ID of a single artifact branch.")
private String branchId;
/**
*
*/
@JsonProperty("versions")
@JsonPropertyDescription("")
private List versions = new ArrayList();
@JsonProperty("description")
public String getDescription() {
return description;
}
@JsonProperty("description")
public void setDescription(String description) {
this.description = description;
}
/**
* The ID of a single artifact branch.
* (Required)
*
*/
@JsonProperty("branchId")
public String getBranchId() {
return branchId;
}
/**
* The ID of a single artifact branch.
* (Required)
*
*/
@JsonProperty("branchId")
public void setBranchId(String branchId) {
this.branchId = branchId;
}
/**
*
*/
@JsonProperty("versions")
public List getVersions() {
return versions;
}
/**
*
*/
@JsonProperty("versions")
public void setVersions(List versions) {
this.versions = versions;
}
}