Type Alias MeetingCreatedEvent

MeetingCreatedEvent: Event<"meeting.created"> & {
    event: string;
    event_ts: number;
    payload: {
        account_id: string;
        object: {
            duration: number;
            host_id: string;
            id: number;
            join_url: string;
            occurrences?: {
                duration?: number;
                occurrence_id: string;
                start_time: string;
                status?: string;
            }[];
            password?: string;
            pmi?: 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;
                jbh_time?: number;
                join_before_host?: boolean;
                meeting_invitees?: { email?: string }[];
                use_pmi: boolean;
            };
            start_time?: string;
            timezone?: string;
            topic: string;
            tracking_fields?: { field?: string; value?: string; visible?: boolean }[];
            type: number;
            uuid: string;
        };
        operation?: string;
        operator: string;
        operator_id: string;
    };
}