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

    Interface Meeting

    Scheduled meeting

    interface Meeting {
        createdAt: Date;
        description?: string;
        endTime?: Date;
        id: string;
        metadata?: Record<string, unknown>;
        participants: MeetingParticipant[];
        recurrence?: {
            dayOfMonth?: number;
            daysOfWeek?: number[];
            endDate?: string | Date;
            interval: number;
            occurrences?: number;
            pattern: "daily" | "weekly" | "monthly";
        };
        roomId: string;
        startTime: Date;
        status: "scheduled"
        | "in_progress"
        | "completed"
        | "cancelled";
        timezone: string;
        title: string;
        updatedAt?: Date;
    }
    Index

    Properties

    createdAt: Date
    description?: string
    endTime?: Date
    id: string
    metadata?: Record<string, unknown>
    participants: MeetingParticipant[]
    recurrence?: {
        dayOfMonth?: number;
        daysOfWeek?: number[];
        endDate?: string | Date;
        interval: number;
        occurrences?: number;
        pattern: "daily" | "weekly" | "monthly";
    }
    roomId: string
    startTime: Date
    status: "scheduled" | "in_progress" | "completed" | "cancelled"
    timezone: string
    title: string
    updatedAt?: Date