interface Meeting {
    creator: string;
    id: string;
    isPasswordProtected: boolean;
    language: string;
    name: string;
    participants: readonly ParticipantDto[];
    phone: string;
    record: boolean;
    url: string;
    validSince: number;
    validUntil: number;
}

Hierarchy

Properties

creator: string
id: string
isPasswordProtected: boolean
language: string
name: string
participants: readonly ParticipantDto[]
phone: string
record: boolean
url: string
validSince: number
validUntil: number

Generated using TypeDoc