IATA

interface IATA

Interface representing settings for IATA symbology.

This interface provides methods to configure the check digit validation mode and manage the transmission of check digits for IATA symbology.

Functions

Link copied to clipboard
abstract suspend fun setCheckCD(deviceId: String, setting: IATACheckCDSettings): CommandResponse

Sets the check digit validation mode for IATA symbology.

abstract fun setCheckCD(deviceId: String, setting: IATACheckCDSettings, callback: (Result<CommandResponse>) -> Unit)

Callback-based version of setCheckCD for Java interoperability.

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

Sets the transmission of the check digit for IATA symbology.

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

Callback-based version of setTransmitCD for Java interoperability.