Type Alias ReportsGetMeetingPollReportsResponse

ReportsGetMeetingPollReportsResponse: {
    id?: number;
    questions?: {
        email?: string;
        first_name?: string;
        last_name?: string;
        name?: string;
        question_details?: {
            answer?: string;
            date_time?: string;
            polling_id?: string;
            question?: string;
        }[];
    }[];
    start_time?: string;
    uuid?: string;
}