edu.stanford.protege.webprotege.match.GetMatchingEntitiesResult Maven / Gradle / Ivy
package edu.stanford.protege.webprotege.match;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.Page;
import edu.stanford.protege.webprotege.common.Response;
import edu.stanford.protege.webprotege.dispatch.Result;
import edu.stanford.protege.webprotege.entity.EntityNode;
import javax.annotation.Nonnull;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 14 Jun 2018
*/
@JsonTypeName("webprotege.entities.GetMatchingEntities")
public record GetMatchingEntitiesResult(@Nonnull Page entities) implements Result, Response {
}