setIgnoreLinkFlag

abstract suspend fun setIgnoreLinkFlag(deviceId: String, enabled: Boolean): CommandResponse

Sets whether to ignore the link flag for composite codes.

Return

A CommandResponse indicating the success or failure of the operation.

Parameters

deviceId

The identifier of the target device.

enabled

A boolean indicating whether to ignore (true) or not ignore (false) the link flag.


abstract fun setIgnoreLinkFlag(deviceId: String, enabled: Boolean, callback: (Result<CommandResponse>) -> Unit)

Callback-based version of setIgnoreLinkFlag for Java interoperability.

Parameters

deviceId

The identifier of the target device.

enabled

A boolean indicating whether to ignore or not ignore the link flag.

callback

Callback to receive CommandResponse or an error.