DoorLockTrait.DlRfidOperationEventMask

data class DoorLockTrait.DlRfidOperationEventMask


Event mask used to enable and disable the transmission of RFID events.

Summary

Public constructors

DlRfidOperationEventMask(
    unknown: Boolean,
    lock: Boolean,
    unlock: Boolean,
    lockInvalidRfid: Boolean,
    lockInvalidSchedule: Boolean,
    unlockInvalidRfid: Boolean,
    unlockInvalidSchedule: Boolean
)

Creates the DlRfidOperationEventMask data class.

Public functions

open ULong

Convert this ClusterBitmap to raw (bytes) format

Public properties

String

Name of the Matter bitmap, in UpperCamelCase, e.g. "OnOffControlBitmap" from OnOff Cluster.

Boolean

RFID-triggered Lock event.

Boolean

RFID-triggered Lock event with the error message 'invalid RFID ID'.

Boolean

RFID-triggered Lock event with the error message 'invalid schedule'.

String

Trait identifier of the Matter Cluster that defines the bitmap Data Type.

Boolean

Unknown or manufacturer-specific remote operation event.

Boolean

RFID-triggered Unlock event.

Boolean

RFID-triggered Lock event with the error message 'invalid RFID ID'.

Boolean

RFID-triggered Unlock event with the error message 'invalid schedule'.

Public constructors

DlRfidOperationEventMask

DlRfidOperationEventMask(
    unknown: Boolean = false,
    lock: Boolean = false,
    unlock: Boolean = false,
    lockInvalidRfid: Boolean = false,
    lockInvalidSchedule: Boolean = false,
    unlockInvalidRfid: Boolean = false,
    unlockInvalidSchedule: Boolean = false
)

Creates the DlRfidOperationEventMask data class.

Public functions

toRaw

open fun toRaw(): ULong

Convert this ClusterBitmap to raw (bytes) format

Public properties

bitmapName

val bitmapNameString

Name of the Matter bitmap, in UpperCamelCase, e.g. "OnOffControlBitmap" from OnOff Cluster.

lock

val lockBoolean

RFID-triggered Lock event.

lockInvalidRfid

val lockInvalidRfidBoolean

RFID-triggered Lock event with the error message 'invalid RFID ID'.

lockInvalidSchedule

val lockInvalidScheduleBoolean

RFID-triggered Lock event with the error message 'invalid schedule'.

traitId

val traitIdString

Trait identifier of the Matter Cluster that defines the bitmap Data Type. Refer to ClusterId.traitId for the format.

unknown

val unknownBoolean

Unknown or manufacturer-specific remote operation event.

unlock

val unlockBoolean

RFID-triggered Unlock event.

unlockInvalidRfid

val unlockInvalidRfidBoolean

RFID-triggered Lock event with the error message 'invalid RFID ID'.

unlockInvalidSchedule

val unlockInvalidScheduleBoolean

RFID-triggered Unlock event with the error message 'invalid schedule'.