Hiyve Components - v1.0.0
    Preparing search index...

    Interface CreateMeetingOptions

    Meeting creation options

    interface CreateMeetingOptions {
        description?: string;
        endTime?: string | Date;
        metadata?: Record<string, unknown>;
        participants?: MeetingParticipant[];
        recurrence?: {
            dayOfMonth?: number;
            daysOfWeek?: number[];
            endDate?: string | Date;
            interval: number;
            occurrences?: number;
            pattern: "daily" | "weekly" | "monthly";
        };
        roomSettings?: Record<string, unknown>;
        startTime: string | Date;
        timezone?: string;
        title: string;
    }
    Index

    Properties

    description?: string
    endTime?: string | Date
    metadata?: Record<string, unknown>
    participants?: MeetingParticipant[]
    recurrence?: {
        dayOfMonth?: number;
        daysOfWeek?: number[];
        endDate?: string | Date;
        interval: number;
        occurrences?: number;
        pattern: "daily" | "weekly" | "monthly";
    }

    Type Declaration

    • OptionaldayOfMonth?: number

      Day of month for monthly recurrence (1-31)

    • OptionaldaysOfWeek?: number[]

      Days of week for weekly recurrence (0=Sun, 1=Mon, ..., 6=Sat)

    • OptionalendDate?: string | Date
    • interval: number
    • Optionaloccurrences?: number

      Number of occurrences before stopping

    • pattern: "daily" | "weekly" | "monthly"
    roomSettings?: Record<string, unknown>
    startTime: string | Date
    timezone?: string
    title: string