interface UploadDocumentMetadata {
    contentType?: string;
    customProperties?: {
        [name: string]: string | number | boolean | null;
    };
    expiresAt?: string;
    fileName?: string;
    processDefinitionId?: string;
    processInstanceKey?: string;
    size?: number;
}

Properties

contentType?: string

The content type of the document.

customProperties?: {
    [name: string]: string | number | boolean | null;
}

Custom properties of the document.

Type declaration

  • [name: string]: string | number | boolean | null
expiresAt?: string

The date and time when the document expires.

fileName?: string

The name of the file.

processDefinitionId?: string

The ID of the process definition that created the document.

processInstanceKey?: string

The key of the process instance that created the document.

size?: number

The size of the document in bytes

Generated using TypeDoc