AdditionalCustomerCommonDataV3

public struct AdditionalCustomerCommonDataV3 : Encodable

Child structure of CustomerIdentifyRequestV3 and CustomerVerifyRequestV3.

Enumerations

  • Whether or not to strip special characters. Default is yes.

    See more

    Declaration

    Swift

    public enum StripSpecialCharacters : String, Encodable
  • Whether or not the POST_API call will get triggered. Default is no.

    See more

    Declaration

    Swift

    public enum PostDataAPIRequired : String, Encodable

Properties

  • 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?

Initialization