io.apicurio.datamodels.models.asyncapi.v23.AsyncApi23Message 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.v23;
import com.fasterxml.jackson.databind.JsonNode;
import io.apicurio.datamodels.models.asyncapi.AsyncApiMessage;
import java.util.List;
public interface AsyncApi23Message extends AsyncApiMessage, AsyncApi23Extensible, AsyncApi23Referenceable {
public AsyncApi23Message createMessage();
public List getOneOf();
public void addOneOf(AsyncApi23Message value);
public void clearOneOf();
public void removeOneOf(AsyncApi23Message value);
public AsyncApi23Schema getHeaders();
public void setHeaders(AsyncApi23Schema value);
public AsyncApi23Schema createSchema();
public JsonNode getPayload();
public void setPayload(JsonNode value);
public String getSchemaFormat();
public void setSchemaFormat(String value);
public AsyncApi23MessageExample getExamples();
public void setExamples(AsyncApi23MessageExample value);
public AsyncApi23MessageExample createMessageExample();
}