CustomerAutofillIdDataRequestV4

public struct CustomerAutofillIdDataRequestV4 : Encodable

Properties

  • This should contain base64 data of the ID front image. It accepts base64 data of a single ID front image or a zip of multiple front ID Images. Max allowed upload size is 5MB. Minimum resolution required is 800X600.

    Declaration

    Swift

    public var idImageFront: String?
  • This should contain base64 data of the ID back image. It accepts base64 data of a single ID front image or a zip of multiple front ID Images. Max allowed upload size is 5MB. Minimum resolution required is 800X600.

    Declaration

    Swift

    public var idImageBack: String?
  • This should contain base64 data of the ID BarCode image. Max allowed upload size is 5MB.

    Declaration

    Swift

    public var idBarcodeImage: String?

Initialization

  • Designated initializer.

    Declaration

    Swift

    public init(idImageFront: String? = nil,
                idImageBack: String? = nil,
                idBarcodeImage: String? = nil)

    Parameters

    idImageFront

    This should contain base64 data of the ID front image. Max allowed upload size is 5MB.

    idImageBack

    This should contain base64 data of the ID back image. Max allowed upload size is 5MB.

    idBarcodeImage

    This should contain base64 data of the ID BarCode image. Max allowed upload size is 5MB.