io.apicurio.datamodels.models.openapi.v30.OpenApi30Example Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models.openapi.v30;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.openapi.OpenApiExample;
public interface OpenApi30Example extends OpenApiExample, OpenApi30Extensible, OpenApi30Referenceable {
public String getSummary();
public void setSummary(String value);
public String getDescription();
public void setDescription(String value);
public JsonNode getValue();
public void setValue(JsonNode value);
public String getExternalValue();
public void setExternalValue(String value);
}