onvif
    Preparing search index...

    Interface CredentialInfo

    The CredentialInfo type represents the credential as a logical object. The structure contains the basic information of a specific credential instance. The device shall provide the following fields for each credential.

    interface CredentialInfo {
        credentialHolderReference: unknown;
        description?: string;
        token: string;
        validFrom?: Date;
        validTo?: Date;
    }

    Hierarchy (View Summary)

    Index
    credentialHolderReference: unknown

    An external reference to a person holding this credential. The reference is a username or used ID in an external system, such as a directory service.

    description?: string

    User readable description for the credential. It shall be up to 1024 characters.

    token: string

    A service-unique identifier of the item.

    validFrom?: Date

    The start date/time validity of the credential. If the ValiditySupportsTimeValue capability is set to false, then only date is supported (time is ignored).

    validTo?: Date

    The expiration date/time validity of the credential. If the ValiditySupportsTimeValue capability is set to false, then only date is supported (time is ignored).