import { Relation } from 'typeorm'; import { CameraSource, StreamingStatus } from '../types/enums'; import { User } from './user'; export declare class DeviceCameraMediaStreamingData { imei: string; cameraSource: CameraSource; mediaLiveInputId?: string | null; mediaLiveChannelId?: string | null; rtmpServerUrl?: string | null; rtmpStreamKey?: string | null; outputUrl?: string | null; status?: StreamingStatus | null; commandSequenceNumber?: string | null; lastRequestedAt?: Date | null; lastRequestedBy?: string | null; lastRequestedByUser?: Relation | null; lastViewerSeenAt?: Date | null; }