Package io.scanbot.sdk.mc
Class MedicalCertificatePatientInfoField
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class MedicalCertificatePatientInfoField implements Parcelable
Patient information field.
-
-
Field Summary
Fields Modifier and Type Field Description private final MedicalCertificatePatientInfoFieldType
type
private final String
value
private final Double
recognitionConfidence
-
Constructor Summary
Constructors Constructor Description MedicalCertificatePatientInfoField(Map<String, Object> source)
MedicalCertificatePatientInfoField(JSONObject json)
MedicalCertificatePatientInfoField(MedicalCertificatePatientInfoFieldType type, String value, Double recognitionConfidence)
-
Method Summary
Modifier and Type Method Description final MedicalCertificatePatientInfoFieldType
getType()
Field type. final String
getValue()
Field value. final Double
getRecognitionConfidence()
Confidence in the recognized value. final JSONObject
toJson(ToJsonConfiguration config)
final MedicalCertificatePatientInfoField
clone()
-
-
Constructor Detail
-
MedicalCertificatePatientInfoField
MedicalCertificatePatientInfoField(JSONObject json)
-
MedicalCertificatePatientInfoField
MedicalCertificatePatientInfoField(MedicalCertificatePatientInfoFieldType type, String value, Double recognitionConfidence)
-
-
Method Detail
-
getType
final MedicalCertificatePatientInfoFieldType getType()
Field type.
-
getRecognitionConfidence
final Double getRecognitionConfidence()
Confidence in the recognized value.
-
toJson
final JSONObject toJson(ToJsonConfiguration config)
-
clone
final MedicalCertificatePatientInfoField clone()
-
-
-
-