Type Alias WebinarUpdatedEvent

WebinarUpdatedEvent: Event<"webinar.updated"> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            agenda?: string;
            duration?: number;
            host_id?: string;
            id: number;
            occurrences?: ExactlyOneOf<
                [
                    {
                        duration?: number;
                        occurrence_id: string;
                        start_time: string;
                        status?: string;
                    },
                ],
            >[];
            password?: string;
            recurrence?: {
                end_date_time?: string;
                end_times?: number;
                monthly_day?: number;
                monthly_week?: number;
                monthly_week_day?: number;
                repeat_interval?: number;
                type?: number;
                weekly_days?: string;
            };
            registration_url?: string;
            settings?: {
                approval_type?: number;
                audio?: string;
                authentication_domains?: string;
                authentication_name?: string;
                authentication_option?: string;
                auto_recording?: string;
                enforce_login?: boolean;
                host_video?: boolean;
                meeting_authentication?: boolean;
                panelists_video?: boolean;
                practice_session?: boolean;
                registration_type?: number;
            };
            start_time?: string;
            timezone?: string;
            topic?: string;
            type?: number;
            uuid?: string;
        };
        old_object: {
            agenda?: string;
            duration?: number;
            host_id?: string;
            id: number;
            occurrences?: ExactlyOneOf<
                [
                    {
                        duration?: number;
                        occurrence_id: string;
                        start_time: string;
                        status?: string;
                    },
                ],
            >[];
            password?: string;
            recurrence?: {
                end_date_time?: string;
                end_times?: number;
                monthly_day?: number;
                monthly_week?: number;
                monthly_week_day?: number;
                repeat_interval?: number;
                type?: number;
                weekly_days?: string;
            };
            registration_url?: string;
            settings?: {
                approval_type?: number;
                audio?: string;
                authentication_domains?: string;
                authentication_name?: string;
                authentication_option?: string;
                auto_recording?: string;
                enforce_login?: boolean;
                host_video?: boolean;
                meeting_authentication?: boolean;
                panelists_video?: boolean;
                practice_session?: boolean;
                registration_type?: number;
            };
            start_time?: string;
            timezone?: string;
            topic?: string;
            type?: number;
            uuid?: string;
        };
        operator: string;
        operator_id: string;
        scope?: string;
        time_stamp: number;
    };
}