Type Alias MeetingRecoveredEvent

MeetingRecoveredEvent: Event<"meeting.recovered"> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            duration: number;
            host_id: string;
            id: number;
            occurrences?: ExactlyOneOf<
                [{ occurrence_id: string; start_time: string }],
            >[];
            start_time: string;
            timezone: string;
            topic: string;
            type: number;
            uuid: string;
        };
        operation?: string;
        operator: string;
        operator_id: string;
    };
}