com.idilia.services.kb.SenseCardResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idilia-java-sdk Show documentation
Show all versions of idilia-java-sdk Show documentation
Idilia Java SDK provides Java APIs for building software using Idilia linguistic services (Language graph, word sense disambiguation, paraphrasing, matching).
The newest version!
package com.idilia.services.kb;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.idilia.services.base.ResponseBase;
/**
* Response for a SenseCardRequest.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SenseCardResponse extends ResponseBase {
public String card;
/**
* Returns the HTML string computed by the KB server for a sense card.
* @return HTML for the card
*/
public String getCard() {
return card;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy