io.apicurio.datamodels.models.openapi.v31.OpenApi31Example 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.v31;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.openapi.OpenApiExample;
public interface OpenApi31Example extends OpenApiExample, OpenApi31Extensible, OpenApi31Referenceable {
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);
}