A text that was voted on by different groups.

interface Comment {
    id: string;
    text: string;
    topics?: ({
        name: string;
    } | {
        name: string;
        subtopics: {
            name: string;
        }[];
    })[];
    voteTalliesByGroup?: {
        [key: string]: VoteTally;
    };
}

Properties

id: string
text: string
topics?: ({
    name: string;
} | {
    name: string;
    subtopics: {
        name: string;
    }[];
})[]
voteTalliesByGroup?: {
    [key: string]: VoteTally;
}