A text that was voted on by different groups.

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

Hierarchy (view full)

Properties

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