import { HubHistoryRoomUpdateOptions } from './types'; import History from '../../History'; /** * This class contains data of a room update event * @author Eirik Måseidvåg */ export default class HubHistoryRoomUpdate extends History { /** * The ID of the room to be updated */ readonly roomId: string; /** * The room name * @public */ readonly name: string | undefined; /** * The room description * @public */ readonly description: string | undefined; /** * The room cover * @public */ readonly cover: string | null | undefined; /** * Determines weather or not the room is private * @public */ readonly isPrivate: boolean | undefined; constructor(options: HubHistoryRoomUpdateOptions); }