ClientDocumentFileDto
The physical file behind a client document — what it is called, what it weighs, where it
lives and how to fetch it. Always present, even for documents whose bytes sit in an external
storage provider rather than our own blob storage.
Properties
| Name | Type | Description |
|---|---|---|
| originalFileName | string | Original file name provided during upload |
Original file name provided during upload | ||
| contentType | string | MIME type of the document (e.g., application/pdf) |
MIME type of the document (e.g., application/pdf) | ||
| fileSize | integer | File size in bytes |
File size in bytes | ||
| storageType | enum | AzureBlob External |
AzureBlob External | ||
| downloadUrl | string | URL for downloading/viewing the document. |
URL for downloading/viewing the document. | ||
JSON Example
{
"originalFileName": "string",
"contentType": "string",
"fileSize": 0,
"storageType": "AzureBlob",
"downloadUrl": "string"
}