interface MeetingDto {
    id: string;
    isPasswordProtected: boolean;
    language: string;
    name: string;
    participants: readonly ParticipantDto[];
    phone: string;
    record: {
        type: "all" | "none";
    };
    url: string;
    user: {
        domain: string;
        username: string;
    };
    validSince: number;
    validUntil: number;
}

Properties

id: string
isPasswordProtected: boolean
language: string
name: string
participants: readonly ParticipantDto[]
phone: string
record: {
    type: "all" | "none";
}

Type declaration

  • type: "all" | "none"
url: string
user: {
    domain: string;
    username: string;
}

Type declaration

  • domain: string
  • username: string
validSince: number
validUntil: number