Interface MessageDto

Data Transfer Object for messages.

interface MessageDto {
    accuracy: number;
    answer: string;
    errors: string[];
    summary: string;
    titles: string[];
}

Properties

accuracy: number
answer: string
errors: string[]
summary: string
titles: string[]