@musallam/storage-and-collaboration-client
    Preparing search index...

    Contains the common properties for all asynchronous jobs in the system.


    NOTE:
    It is not intended to be used directly


    interface BaseJobStatus {
        jobId: string;
        jobType: string;
        requestId: string;
    }
    Index

    Properties

    jobId: string
    jobType: string

    The type of the asynchronous job, depends on the original API invocation that created the job.
    Currently, the following job types are supported:

    • file_upload
    • file_download
    • file_copy
    • file_move
    • folder_copy
    • folder_move
    • project_package

    NOTE:
    This list is not exhaustive and will be updated as new job types are added. Clients should expect new job types to be added in the future.


    requestId: string