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

io.apicurio.registry.rest.v3.beans.CreateGroup Maven / Gradle / Ivy

The newest version!

package io.apicurio.registry.rest.v3.beans;

import java.util.Map;
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 CreateGroupMetaData
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "description", "labels", "groupId" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class CreateGroup { @JsonProperty("description") private String description; /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") @JsonPropertyDescription("User-defined name-value pairs. Name and value must be strings.") private Map labels; /** * An ID of a single artifact group. * (Required) * */ @JsonProperty("groupId") @JsonPropertyDescription("An ID of a single artifact group.") private String groupId; @JsonProperty("description") public String getDescription() { return description; } @JsonProperty("description") public void setDescription(String description) { this.description = description; } /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") public Map getLabels() { return labels; } /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") public void setLabels(Map labels) { this.labels = labels; } /** * An ID of a single artifact group. * (Required) * */ @JsonProperty("groupId") public String getGroupId() { return groupId; } /** * An ID of a single artifact group. * (Required) * */ @JsonProperty("groupId") public void setGroupId(String groupId) { this.groupId = groupId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy