CustomerAutofillIdDataRequestV4
public struct CustomerAutofillIdDataRequestV4 : Encodable
-
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?
-
Designated initializer.
Declaration
Swift
public init(idImageFront: String? = nil, idImageBack: String? = nil, idBarcodeImage: String? = nil)Parameters
idImageFrontThis should contain base64 data of the ID front image. Max allowed upload size is 5MB.
idImageBackThis should contain base64 data of the ID back image. Max allowed upload size is 5MB.
idBarcodeImageThis should contain base64 data of the ID BarCode image. Max allowed upload size is 5MB.