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

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

The newest version!

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

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 SnapshotMetaData
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "snapshotId" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class SnapshotMetaData { /** * * (Required) * */ @JsonProperty("snapshotId") @JsonPropertyDescription("") private String snapshotId; /** * * (Required) * */ @JsonProperty("snapshotId") public String getSnapshotId() { return snapshotId; } /** * * (Required) * */ @JsonProperty("snapshotId") public void setSnapshotId(String snapshotId) { this.snapshotId = snapshotId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy