Type Alias MeetingRegistrationDeniedEvent

MeetingRegistrationDeniedEvent: Event<"meeting.registration_denied"> & {
    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 }],
            >[];
            registrant: {
                email: string;
                first_name: string;
                id: string;
                last_name?: string;
            };
            start_time: string;
            timezone: string;
            topic: string;
            type: number;
            uuid: string;
        };
        operator: string;
        operator_id: string;
    };
}