CustomerDataMatchConfig
public struct CustomerDataMatchConfig : Encodable
-
Whether or not IDmission’s ID Verification Team will perform a IdNumberMatch of the submitted form in the event it is not auto-decisioned. Default is
See moreno
.Declaration
Swift
public enum IdNumberMatch : String, Encodable
-
Whether or not IDmission’s ID Verification Team will perform a dateOfBirthMatch of the submitted form in the event it is not auto-decisioned. Default is
See moreno
.Declaration
Swift
public enum DateOfBirthMatch : String, Encodable
-
Whether or not IDmission’s ID Verification Team will perform a expiryDateMatch of the submitted form in the event it is not auto-decisioned. Default is
See moreno
.Declaration
Swift
public enum ExpiryDateMatch : String, Encodable
-
Whether or not IDmission’s ID Verification Team will perform a nameMatch of the submitted form in the event it is not auto-decisioned. Default is
See moreno
.Declaration
Swift
public enum NameMatch : String, Encodable
-
Id Number, can be optionally provided.
Declaration
Swift
public var idNumberMatch: IdNumberMatch?
-
Customer Date Of Birth, can be optionally provided.
Declaration
Swift
public var dateOfBirthMatch: DateOfBirthMatch?
-
Id Expiry Date. Example: 07/30
Declaration
Swift
public var expiryDateMatch: ExpiryDateMatch?
-
Name of the Customer.
Declaration
Swift
public var nameMatch: NameMatch?
-
Designated initializer.
Declaration
Swift
public init(idNumberMatch: IdNumberMatch? = nil, dateOfBirthMatch: DateOfBirthMatch? = nil, expiryDateMatch: ExpiryDateMatch? = nil, nameMatch: NameMatch? = nil)
Parameters
idNumberMatch
Id Number, can be optionally provided.
dateOfBirthMatch
Customer Date Of Birth, can be optionally provided.
expiryDateMatch
Id Expiry Date. Example: 07/30
nameMatch
Name of the Customer.