Package io.scanbot.sdk.vin
Class VinBarcodeResult
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class VinBarcodeResult implements Parcelable
Result of the barcode scanner.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
extractedVIN
private final List<Point>
rectangle
private final VinBarcodeExtractionStatus
status
-
Constructor Summary
Constructors Constructor Description VinBarcodeResult(Map<String, Object> source)
VinBarcodeResult(JSONObject json)
VinBarcodeResult(String extractedVIN, List<Point> rectangle, VinBarcodeExtractionStatus status)
-
Method Summary
Modifier and Type Method Description final String
getExtractedVIN()
Text result of the barcode scanner. final List<Point>
getRectangle()
Rectangle of the barcode in the image. final VinBarcodeExtractionStatus
getStatus()
Status of the barcode extraction. final JSONObject
toJson(ToJsonConfiguration config)
final VinBarcodeResult
clone()
-
-
Constructor Detail
-
VinBarcodeResult
VinBarcodeResult(JSONObject json)
-
VinBarcodeResult
VinBarcodeResult(String extractedVIN, List<Point> rectangle, VinBarcodeExtractionStatus status)
-
-
Method Detail
-
getExtractedVIN
final String getExtractedVIN()
Text result of the barcode scanner.
-
getRectangle
final List<Point> getRectangle()
Rectangle of the barcode in the image.
-
getStatus
final VinBarcodeExtractionStatus getStatus()
Status of the barcode extraction.
-
toJson
final JSONObject toJson(ToJsonConfiguration config)
-
clone
final VinBarcodeResult clone()
-
-
-
-