BiometricEnrollBiometricRequestData
public struct BiometricEnrollBiometricRequestData : Encodable
One customer biometric is mandatory (Selfie, Fingerprint, or Voice)
-
This should contain base64 data of the customer photo/selfie. It accepts base64 data of a single customer photo or a zip of multiple customer images. Max allowed upload size is 2MB.
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. Note: One customer biometric is mandatory (Selfie, Fingerprint, or Voice)
Declaration
Swift
public var voiceData: String? -
This should contain base64 data of the Customer Video Data. It accepts base64 data.
Declaration
Swift
public var videoData: String?
-
Designated initializer. One customer biometric is mandatory (Selfie, Fingerprint, or Voice)
Declaration
Swift
public init(selfie: String? = nil, fingerPrintData: FingerPrintData? = nil, voiceData: String? = nil, videoData: String? = nil)Parameters
selfieThis should contain base64 data of the customer photo/selfie. It accepts base64 data of a single customer photo or a zip of multiple customer images. Max allowed upload size is 2MB.
fingerPrintDataFingerprint data.
voiceDataThis should contain base64 data of the Customer Voice Data. It accepts base64 data. Note: One customer biometric is mandatory (Selfie, Fingerprint, or Voice)
videoDataThis should contain base64 data of the Customer Video Data. It accepts base64 data.