Interface RoomData

interface RoomData {
    ice: {
        urls: string;
    }[];
    owner: string;
    participants: [];
    record: boolean;
    room: string;
    server: {
        http: string;
        https: string;
        ws: string;
        wss: string;
    }[];
    sipUri: string;
    token: string;
    uuid: string;
}

Properties

ice: {
    urls: string;
}[]

Type declaration

  • urls: string
owner: string
participants: []
record: boolean
room: string
server: {
    http: string;
    https: string;
    ws: string;
    wss: string;
}[]

Type declaration

  • http: string
  • https: string
  • ws: string
  • wss: string
sipUri: string
token: string
uuid: string