onvif
    Preparing search index...

    Interface ServiceCapabilities

    ServiceCapabilities structure reflects optional functionality of a service. The information is static and does not change during device operation. The following capabilities are available:

    interface ServiceCapabilities {
        clientSuppliedTokenSupported?: boolean;
        doorManagementSupported?: boolean;
        maxDoors?: number;
        maxLimit: number;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index
    clientSuppliedTokenSupported?: boolean

    Indicates that the client is allowed to supply the token when creating doors. To enable the use of the command SetDoor, the value must be set to true.

    doorManagementSupported?: boolean

    Indicates that the client can perform CRUD operations (create, read, update and delete) on doors. To enable the use of the commands GetDoors, GetDoorList, CreateDoor, ModifyDoor and DeleteDoor, the value must be set to true.

    maxDoors?: number

    Indicates the maximum number of doors supported by the device.

    maxLimit: number

    The maximum number of entries returned by a single Get<Entity>List or Get<Entity> request. The device shall never return more than this number of entities in a single response.