Interface PollsAnswer

interface PollsAnswer {
    id: number;
    rate: number;
    text: string;
    votes: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

id: number

Answer ID

rate: number

Answer rate in percents

text: string

Answer text

votes: number

Votes number

Generated using TypeDoc