Type Alias WebinarsCreateWebinarsPollResponse

WebinarsCreateWebinarsPollResponse: { id?: string; status?: string } & {
    anonymous?: boolean;
    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;
    }[];
    title?: string;
}