BiometricEnrollData

public struct BiometricEnrollData : Encodable

Child structure of CustomerEnrollDataRequest.

Properties

  • This should contain base64 data of the customer photo. It accepts base64 data of a single customer photo. 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.

    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?
  • Audio/Speech capture start time.

    Declaration

    Swift

    public var voiceStartTime: Int?
  • This should contain base64 data of the Customer expected audio text. It accepts base64 data.

    Declaration

    Swift

    public var expectedAudioText: String?

Initialization

  • Designated initializer.

    Declaration

    Swift

    public init(selfie: String,
                fingerPrintData: FingerPrintData? = nil,
                voiceData: String? = nil,
                videoData: String? = nil,
                voiceStartTime: Int? = nil,
                expectedAudioText: String? = nil)

    Parameters

    selfie

    This should contain base64 data of the customer photo. It accepts base64 data of a single customer photo. Max allowed upload size is 2MB.

    fingerPrintData

    Fingerprint data.

    voiceData

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

    videoData

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

    voiceStartTime

    Audio/Speech capture start time.

    expectedAudioText

    This should contain base64 data of the Customer expected audio text. It accepts base64 data.