Type Alias MeetingsPerformBatchPollCreationResponse

MeetingsPerformBatchPollCreationResponse: {
    polls?: {
        anonymous?: boolean;
        id?: string;
        poll_type?: number;
        questions?: {
            answer_max_character?: number;
            answer_min_character?: number;
            answer_required?: boolean;
            answers?: string[];
            case_sensitive?: boolean;
            name?: string;
            prompts?: { prompt_question?: string; prompt_right_answers?: string[] }[];
            rating_max_label?: string;
            rating_max_value?: number;
            rating_min_label?: string;
            rating_min_value?: number;
            right_answers?: string[];
            show_as_dropdown?: boolean;
            type?: string;
        }[];
        status?: string;
        title?: string;
    }[];
}