BiometricIdentifyDataV3

public struct BiometricIdentifyDataV3 : Encodable

One customer biometric is mandatory (Selfie, Fingerprint, or Voice) for verification.

Properties

  • This should contain base64 data of the customer photo/selfie. It accepts base64 data of a single customer photo.

    Declaration

    Swift

    public var selfie: String
  • Fingerprint data.

    Declaration

    Swift

    public var fingerPrintData: FingerPrintData?
  • This should contain base64 data of the Customer Voice Data. It accepts base64 data.

    Declaration

    Swift

    public var voiceData: String?

Initialization

  • Designated initializer. One customer biometric is mandatory (Selfie, Fingerprint, or Voice) for verification.

    Declaration

    Swift

    public init(selfie: String,
                fingerPrintData: FingerPrintData? = nil,
                voiceData: String? = nil)

    Parameters

    selfie

    This should contain base64 data of the customer photo/selfie. It accepts base64 data of a single customer photo.

    fingerPrintData

    Fingerprint data.

    voiceData

    This should contain base64 data of the Customer Voice Data. It accepts base64 data.