enum

Matter::Cluster::Definitions::DoorLock::OperationError

Inherits Enum < Comparable < Value < Object

The OperationError enumeration shall indicate the error cause of the Lock/Unlock operation performed.

Constants

Unspecified = 0_u8
InvalidCredential = 1_u8
DisabledUserDenied = 2_u8
Restricted = 3_u8
InsufficientBattery = 4_u8

Instance methods

disabled_user_denied?

Returns true if this enum value equals DisabledUserDenied

Source
insufficient_battery?

Returns true if this enum value equals InsufficientBattery

Source
invalid_credential?

Returns true if this enum value equals InvalidCredential

Source
restricted?

Returns true if this enum value equals Restricted

Source
unspecified?

Returns true if this enum value equals Unspecified

Source