Type Alias WebinarsUpdateWebinarSurveyRequestBody

WebinarsUpdateWebinarSurveyRequestBody: {
    custom_survey?: {
        anonymous?: boolean;
        feedback?: string;
        numbered_questions?: boolean;
        questions?: {
            answer_max_character?: number;
            answer_min_character?: number;
            answer_required?: boolean;
            answers?: string[];
            name?: string;
            prompts?: { prompt_question?: string }[];
            rating_max_label?: string;
            rating_max_value?: number;
            rating_min_label?: string;
            rating_min_value?: number;
            show_as_dropdown?: boolean;
            type?: string;
        }[];
        show_question_type?: boolean;
        title?: string;
    };
    show_in_the_browser?: boolean;
    show_in_the_follow_up_email?: boolean;
    third_party_survey?: string;
}