interface ZoneDevice {
    deviceType: DeviceType;
    healthStatus: HealthStatusType;
    id: string;
    isVideoStorageDevice?: boolean;
    macAddresses?: string[];
    name: string;
    prepositionContent?: boolean;
    videoStreams?: VideoStream[];
}

Properties

deviceType: DeviceType
healthStatus: HealthStatusType
id: string
isVideoStorageDevice?: boolean
macAddresses?: string[]
name: string
prepositionContent?: boolean
videoStreams?: VideoStream[]