Type Alias ReportsGetMeetingSurveyReportResponse

ReportsGetMeetingSurveyReportResponse: {
    meeting_id?: number;
    meeting_uuid?: string;
    start_time?: string;
    survey_answers?: {
        answer_details?: {
            answer?: string;
            date_time?: string;
            question?: string;
            question_id?: string;
        }[];
        email?: string;
        first_name?: string;
        last_name?: string;
        name?: string;
    }[];
    survey_id?: string;
    survey_name?: string;
}