io.apicurio.datamodels.models.asyncapi.v30.AsyncApi30Info 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.asyncapi.v30;
import io.apicurio.datamodels.models.asyncapi.AsyncApiInfo;
import java.util.List;
public interface AsyncApi30Info extends AsyncApiInfo, AsyncApi30Extensible {
public AsyncApi30Tag createTag();
public List getTags();
public void addTag(AsyncApi30Tag value);
public void clearTags();
public void removeTag(AsyncApi30Tag value);
public AsyncApi30ExternalDocumentation getExternalDocs();
public void setExternalDocs(AsyncApi30ExternalDocumentation value);
public AsyncApi30ExternalDocumentation createExternalDocumentation();
}