io.apicurio.datamodels.models.asyncapi.AsyncApiDocument 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;
import io.apicurio.datamodels.models.Document;
public interface AsyncApiDocument extends Document {
public String getDefaultContentType();
public void setDefaultContentType(String value);
public String getAsyncapi();
public void setAsyncapi(String value);
public AsyncApiComponents getComponents();
public void setComponents(AsyncApiComponents value);
public AsyncApiComponents createComponents();
public AsyncApiServers getServers();
public void setServers(AsyncApiServers value);
public AsyncApiServers createServers();
public AsyncApiChannels getChannels();
public void setChannels(AsyncApiChannels value);
public AsyncApiChannels createChannels();
public String getId();
public void setId(String value);
}