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

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

There is a newer version: 3.0.4
Show 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.JsonPropertyOrder;


/**
 * Root Type for Download
 * 

* Models a download "link". Useful for browser use-cases. * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "downloadId", "href" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class DownloadRef { /** * * (Required) * */ @JsonProperty("downloadId") private String downloadId; @JsonProperty("href") private String href; /** * * (Required) * */ @JsonProperty("downloadId") public String getDownloadId() { return downloadId; } /** * * (Required) * */ @JsonProperty("downloadId") public void setDownloadId(String downloadId) { this.downloadId = downloadId; } @JsonProperty("href") public String getHref() { return href; } @JsonProperty("href") public void setHref(String href) { this.href = href; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy