FormDetailLiveCheckResponseData

public struct FormDetailLiveCheckResponseData : Codable

Child structure of CustomerLiveCheckResponse.

Properties

  • This is the unique key that is echoed back from the request.

    Declaration

    Swift

    public var uniqueRequestId: String?
  • This is the unique Form ID that is generated on the IDmission server for each unique request.

    Declaration

    Swift

    public var verificationResultId: Int?
  • Dynamic verification result details.

    Declaration

    Swift

    public var verificationResultDetails: [String : Any]?
  • This is the result state of the submission.

    Expected values are:

    • Live Face Detected - (when live face is detected)
    • Live Face Not Detected - (when live face is not detected)

    Declaration

    Swift

    public var verificationResult: String?
  • Different status codes will be returned back based on the servers evaluation of the request. Please refer /master/status-code-list which represents all of the values for the Form Create / Form Search APIs.

    Declaration

    Swift

    public var verificationResultCode: String?
  • If a face mask is detected in the image, the value will be true, else false.

    Declaration

    Swift

    public var faceMask: String?
  • Score associated with the face mask detection. Value range from 0 to 1, 1 being the highest.

    Declaration

    Swift

    public var faceMaskScore: Double?
  • If a live face is detected in the image(s), the value will be true, else false.

    Declaration

    Swift

    public var liveFace: String?
  • Score associated with the face liveness. Value range from 0 to 1, 1 being the highest.

    Declaration

    Swift

    public var realScore: Double?
  • If a head covering is detected in the image, the value will be true, else false.

    Declaration

    Swift

    public var headCovering: String?
  • Score associated with the head covering detection. Value range from 0 to 1, 1 being the highest.

    Declaration

    Swift

    public var headCoveringScore: Double?
  • If any eye covering is detected in the image (e.g. glasses, specticles, patches), the value will be true, else false.

    Declaration

    Swift

    public var eyeCovering: String?
  • Score associated with the eye covering detection. Value range from 0 to 1, 1 being the highest.

    Declaration

    Swift

    public var eyeCoveringScore: Double?
  • If a cell phone is detected in the image, the value will be true, else false.

    Declaration

    Swift

    public var cellPhone: String?
  • Score associated with the cell phone detection. Value range from 0 to 1, 1 being the highest.

    Declaration

    Swift

    public var cellPhoneScore: Double?
  • Estimated age of a subject based on the evaluation of their facial biometrics.

    Declaration

    Swift

    public var estimatedAge: Int?
  • Predicted gender of a subject based on the evaluation of their facial biometrics.

    Declaration

    Swift

    public var predicatedGender: String?