VerifyCheckDigit
VerifyCheckDigit specifies whether to verify the check digit in barcodes where this check digit is optional. It is defined as below:
| Value Type | Value Range | Default Value | Template Structure Type |
|---|---|---|---|
| int | [0, 1] | 0 | FormatSpecification |
Remarks
- 0: Do not verify the check digit.
- 1: Verify the check digit and if it does not match, no result will be returned. Do not set this parameter to 1 for barcodes without an optional check digit.
- It is valid only for Code 11.
Setting Methods
VerifyCheckDigit can be set via JSON template.
As JSON Parameter
VerifyCheckDigit as a JSON parameter is an int value defined as below.
| Key Name | Key Value |
|---|---|
| VerifyCheckDigit | 0 or 1 |
JSON Example
{
"VerifyCheckDigit": 1
}