PracticeDocumentDto
Data transfer object for a practice document (tenant-level document library file)
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique identifier |
Unique identifier | ||
| name | string | Name of the document |
Name of the document | ||
| description | string | Description of the document |
Description of the document | ||
| originalFileName | string | Original file name provided during upload |
Original file name provided during upload | ||
| contentType | string | MIME type of the file |
MIME type of the file | ||
| fileSize | integer | File size in bytes |
File size in bytes | ||
| createdDate | string | Date when the document was uploaded |
Date when the document was uploaded | ||
| updatedDate | string | Date when the document was last updated |
Date when the document was last updated | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"originalFileName": "string",
"contentType": "string"
}