export declare enum MESUREMENT_UNIT { DOT = "dot", PX = "px", MM = "mm", CM = "cm", M = "m" } export declare enum DOCUMENT_SIGNING_STATUS { DONE = "done", FAILED = "failed", REJECTED = "rejected" } export declare enum DOCUMENT_SIGNING_ORIGIN_TYPE { CLIENT = "client" } /** * image_asset: images for ex. internal news, covers, logos * image_asset_public: same as image_asset but for public use (for ex. website; unauthenticated users) * general_asset: similiar to image_assets but covering pdfs, and other file formats (not for resizing) * general_assets_public: same as general_assets but for public use (for ex. pdf downloads on website) * general: documents, files, .. * general_remote: much like general, but usually concerns files that have been stored only for signing purposes * user_identity_document: a picture of the identity document (for ex. passport) * user_identity_document_picture: the person's picture from the identity document * user_enrollment_picture: the snapshot taken from the camera at the enrollment station * user_proof_of_address: a utility bill with the persons name to proof the address */ export declare enum DOCUMENT_METADATA_TYPE { IMAGE_ASSET = "image_asset", IMAGE_ASSET_PUBLIC = "image_asset_public", GENERAL_ASSET = "general_asset", GENERAL_ASSET_PUBLIC = "general_asset_public", GENERAL = "general", GENERAL_REMOTE = "general_remote", USER_IDENTITY_DOCUMENT = "user_identity_document", USER_IDENTITY_DOCUMENT_PICTURE = "user_identity_document_picture", USER_ENROLLMENT_PICTURE = "user_enrollment_picture", USER_PROOF_OF_ADDRESS = "user_proof_of_address", USER_ENROLLMENT_VIDEO = "user_enrollment_video" } export declare enum CONVERSION_STATUS { NONE = "none", WAITING = "waiting", CONVERTING = "converting", CONVERTED = "converted", ERROR = "error" }