setSuffixFromString

abstract suspend fun setSuffixFromString(deviceId: String, suffix: String, symbology: FormattableSymbology = FormattableSymbology.ALL_CODES): CommandResponse

Sets the suffix formatting using a string.

Return

A CommandResponse indicating the success or failure of the operation.

Parameters

deviceId

The identifier of the target device.

suffix

A string to be used as the suffix.

symbology

The symbology type to be used.


abstract fun setSuffixFromString(deviceId: String, suffix: String, symbology: FormattableSymbology, callback: (Result<CommandResponse>) -> Unit)

Callback-based version of setSuffixFromString for Java interoperability.

Parameters

deviceId

The identifier of the target device.

suffix

A string to be used as the suffix.

symbology

The symbology type to be used.

callback

Callback to receive the CommandResponse.