GS1Databar

interface GS1Databar

Interface representing settings for GS1 Databar symbology.

This interface provides methods to manage the transmission of check digits and AI (Application Identifier) settings for GS1 Databar symbology.

Functions

Link copied to clipboard
abstract suspend fun setTransmitAI(deviceId: String, enabled: Boolean): CommandResponse

Sets the transmission of the AI (Application Identifier) for GS1 Databar symbology.

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

Callback-based version of setTransmitAI for Java interoperability.

Link copied to clipboard
abstract suspend fun setTransmitCD(deviceId: String, enabled: Boolean): CommandResponse

Sets the transmission of the check digit for GS1 Databar symbology.

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

Callback-based version of setTransmitCD for Java interoperability.