Type Alias WebinarCreatedEvent

WebinarCreatedEvent: Event<"webinar.created"> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            creation_source: string;
            duration: number;
            host_id: string;
            id: number;
            join_url: string;
            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;
            };
            settings: { alternative_hosts: string; use_pmi: boolean };
            start_time?: string;
            timezone: string;
            topic: string;
            type: number;
            uuid: string;
        };
        operation?: string;
        operator: string;
        operator_id: string;
    };
}