Pawnote
    Preparing search index...

    Type Alias NewsQuestion

    NewsQuestion: Readonly<
        {
            answerID: string;
            attachments: Attachment[];
            choices: NewsQuestionChoice[];
            content: string;
            fullTitle: string;
            id: string;
            kind: NewsQuestionKind;
            maximumChoices: number;
            maximumLength: number;
            position: number;
            shouldAnswer: boolean;
            shouldRespectMaximumChoices: boolean;
            title: string;
        },
    > & {
        answerDate?: Date;
        answered: boolean;
        selectedAnswers?: number[];
        textInputAnswer?: string;
    }