onvif
    Preparing search index...

    Interface DoorState

    The DoorState structure contains current aggregate runtime status of Door.

    interface DoorState {
        alarm?: DoorAlarmState;
        doorMode: DoorMode;
        doorPhysicalState?: DoorPhysicalState;
        doubleLockPhysicalState?: LockPhysicalState;
        fault?: DoorFault;
        lockPhysicalState?: LockPhysicalState;
        tamper?: DoorTamper;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Alarm state of the door; it is of type DoorAlarmState. A device that signals support for Alarm capability for a particular door instance shall provide this field.

    doorMode: DoorMode

    The logical operating mode of the door; it is of type DoorMode. An ONVIF compatible device shall report current operating mode in this field.

    doorPhysicalState?: DoorPhysicalState

    Physical state of the Door; it is of type DoorPhysicalState. A device that signals support for DoorMonitor capability for a particular door instance shall provide this field.

    doubleLockPhysicalState?: LockPhysicalState

    Physical state of the DoubleLock; it is of type LockPhysicalState. A device that signals support for DoubleLockMonitor capability for a particular door instance shall provide this field.

    fault?: DoorFault

    Fault information for door; it is of type DoorFault. A device that signals support for Fault capability for a particular door instance shall provide this field.

    lockPhysicalState?: LockPhysicalState

    Physical state of the Lock; it is of type LockPhysicalState. A device that signals support for LockMonitor capability for a particular door instance shall provide this field.

    tamper?: DoorTamper

    Tampering state of the door; it is of type DoorTamper. A device that signals support for Tamper capability for a particular door instance shall provide this field.