interface PollResults {
    allowMultipleAnswers: boolean;
    pollAnswers: { answer: string; votes: 0 }[];
    question: string;
    totalNoResponses: number;
    totalResponses: number;
    whenPollCreated: string;
}

Properties

allowMultipleAnswers: boolean
pollAnswers: { answer: string; votes: 0 }[]
question: string
totalNoResponses: number
totalResponses: number
whenPollCreated: string