KoreanPostalAuthority

Interface representing settings for Korean Postal Authority Code symbology.

This interface provides methods to enable or disable the transmission of check digits, and to manage the transmission of dashes and orientation for the Korean Postal Authority Code symbology.

Functions

Link copied to clipboard
abstract suspend fun setKoreanPostalOrientation(deviceId: String, setUpsideDown: Boolean): CommandResponse

Sets the orientation of the scan engine for Korean Postal Authority Code symbology.

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

Callback-based version of setKoreanPostalOrientation for Java interoperability.

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

Sets the transmission of the check digit for Korean Postal Authority Code symbology.

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

Callback-based version of setTransmitCD for Java interoperability.

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

Sets the transmission of dashes in the barcode data for Korean Postal Authority Code symbology.

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

Callback-based version of setTransmitDash for Java interoperability.

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

Sets upside-down reading for Korean Postal Authority Code symbology.

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

Callback-based version of setUpsideDownReading for Java interoperability.