AdditionalCustomerCommonDataV3
public struct AdditionalCustomerCommonDataV3 : Encodable
Child structure of CustomerIdentifyRequestV3
and CustomerVerifyRequestV3
.
-
Mandatory Unique Identifier generated by the client application that will be stored with the form and can be subsequently used to search form. This is required to be unique for each form and should have logic to ensure that. Recommendation is to include items such as the timestamp and Login ID. It can be as long as 256 characters. Default is a
UUID
.Declaration
Swift
public var uniqueRequestId: String
-
Verification Approval Code
Declaration
Swift
public var verificationApprovalCode: String?
-
Client Trace ID generated by client applicationIt can be as long as 256 characters.
Declaration
Swift
public var clientTraceId: String?
-
Whether or not to strip special characters. Default is
yes
.Declaration
Swift
public var stripSpecialCharacters: StripSpecialCharacters?
-
The POST Data API is used to accept the results and extracted data from the service. This requires a URL to be specified for the POST to be sent to. Default is
no
.Declaration
Swift
public var postDataAPIRequired: PostDataAPIRequired?
-
Get location details in GPS Co-ordinate Format (Latitude & Longitude).
Declaration
Swift
public var gpsCoordinates: String?
-
Additional ID and/or Selfie Capture image metadata.
Declaration
Swift
public var metadata: Metadata?
-
Additional decoded MRZ and/or Barcode metadata.
Declaration
Swift
public var ocrMetadata: String?
-
init(uniqueRequestId:
verificationApprovalCode: clientTraceId: stripSpecialCharacters: postDataAPIRequired: gpsCoordinates: ) Designated initializer.
Declaration
Swift
public init(uniqueRequestId: String, verificationApprovalCode: String? = nil, clientTraceId: String? = nil, stripSpecialCharacters: StripSpecialCharacters? = .yes, postDataAPIRequired: PostDataAPIRequired? = .no, gpsCoordinates: String? = nil)
Parameters
uniqueRequestId
Mandatory Unique Identifier generated by the client application that will be stored with the form and can be subsequently used to search form. This is required to be unique for each form and should have logic to ensure that. Recommendation is to include items such as the timestamp and Login ID. It can be as long as 256 characters. Default is a
UUID
.