setMinLength

abstract suspend fun setMinLength(deviceId: String, length: Code39MinimumLength): CommandResponse

Sets the minimum length for Code 39 symbology.

Return

A CommandResponse indicating the success or failure of the operation.

Parameters

deviceId

The identifier of the target device.

length

The Code39MinimumLength enum value representing the desired minimum length.


abstract fun setMinLength(deviceId: String, length: Code39MinimumLength, callback: (Result<CommandResponse>) -> Unit)

Callback-based version of setMinLength for Java interoperability.

Parameters

deviceId

The identifier of the target device.

length

The Code39MinimumLength enum value representing the desired minimum length.

callback

Callback to receive CommandResponse indicating success or failure.