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

io.fabric8.swagger.model.Api_ Maven / Gradle / Ivy


package io.fabric8.swagger.model;

import java.net.URI;
import javax.annotation.Generated;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.EqualsAndHashCode;
import lombok.ToString;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "path",
    "description"
})
@ToString
@EqualsAndHashCode
public class Api_ {

    /**
     * 
     * (Required)
     * 
     */
    @JsonProperty("path")
    @NotNull
    private URI path;
    @JsonProperty("description")
    private String description;

    /**
     * 
     * (Required)
     * 
     * @return
     *     The path
     */
    @JsonProperty("path")
    public URI getPath() {
        return path;
    }

    /**
     * 
     * (Required)
     * 
     * @param path
     *     The path
     */
    @JsonProperty("path")
    public void setPath(URI path) {
        this.path = path;
    }

    /**
     * 
     * @return
     *     The description
     */
    @JsonProperty("description")
    public String getDescription() {
        return description;
    }

    /**
     * 
     * @param description
     *     The description
     */
    @JsonProperty("description")
    public void setDescription(String description) {
        this.description = description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy