StringPosition

data class StringPosition(val lineIndex: Int, val startIndex: Int, val endIndex: Int)

Represents the position of a string within a Machine Readable Zone (MRZ) line according to the ICAO Doc 9303.

Constructors

Link copied to clipboard
fun StringPosition(lineIndex: Int, startIndex: Int, endIndex: Int)

Properties

Link copied to clipboard

The ending index of the string within the MRZ line.

Link copied to clipboard

The index of the MRZ line where the string is located.

Link copied to clipboard

The starting index of the string within the MRZ line.