Upload Mode
Parameter
Description
Default
Required
public enum FileFormat: String {
case png
case jpeg
case pdf
}Last updated
To enable the document upload functionality it is necessary to instantiate an object of type UploadSettings(boolean enable) and set its parameters:
enable
Enables or disables this feature.
true
β
compress
Enables or disables file compression before uploading.
true
β
fileFormats
Specifies the accepted file formats for upload.
.PDF, .JPEG, .PNG
β
maximumFileSize
Sets the maximum file size limit in KB.
10000 (10MB)
β
Currently, the supported file formats are:
public enum FileFormat: String {
case png
case jpeg
case pdf
}Last updated

