Type Alias ArchivingGetMeetingsArchivedFilesResponse

ArchivingGetMeetingsArchivedFilesResponse: {
    account_name: string;
    archive_files: {
        auto_delete?: boolean;
        download_url: string;
        encryption_fingerprint: string;
        file_extension: string;
        file_path?: string;
        file_size: number;
        file_type: string;
        id: string;
        individual: boolean;
        number_of_messages?: number;
        participant_email?: string;
        participant_join_time: string;
        participant_leave_time: string;
        recording_type: string;
        status: string;
        storage_location?: string;
    }[];
    complete_time: string;
    duration: number;
    duration_in_second: number;
    group_id?: string;
    host_id: string;
    id: number;
    is_breakout_room: boolean;
    meeting_type: string;
    parent_meeting_id?: string;
    recording_count: number;
    start_time: string;
    status: string;
    timezone: string;
    topic: string;
    total_size: number;
    type: number;
    uuid: string;
}