coveo-search-ui
Version:
Coveo JavaScript Search Framework
19 lines (16 loc) • 434 B
text/typescript
export interface IQuestionAnswerMeta {
documentId: {
contentIdKey: string;
contentIdValue: string;
};
score: number;
}
export interface IRelatedQuestionAnswerResponse extends IQuestionAnswerMeta {
question: string;
answerSnippet: string;
}
export interface IQuestionAnswerResponse extends IQuestionAnswerMeta {
question?: string;
answerSnippet?: string;
relatedQuestions: IRelatedQuestionAnswerResponse[];
}