Input to the DoorLock clearCredential command

MatterSpecification.v13.Cluster § 5.2.10.44

interface ClearCredentialRequest {
    credential: null | TypeFromFields<{
        credentialIndex: FieldType<number>;
        credentialType: FieldType<DoorLock.CredentialType>;
    }>;
}

Hierarchy (view full)

Properties

Properties

credential: null | TypeFromFields<{
    credentialIndex: FieldType<number>;
    credentialType: FieldType<DoorLock.CredentialType>;
}>

This field shall contain a credential structure that contains the CredentialTypeEnum and the credential index (0xFFFE for all credentials or 0 if not applicable) to clear. This shall be null if clearing all credential types otherwise it shall NOT be null.

MatterSpecification.v13.Cluster § 5.2.10.44.1