FileContentDto
File response data transfer object
idinteger<int64>
Unique identifier of the file
Example:
123namestring
Name of the file
Example:
document.pdfsizestring
Size of the file (human-readable)
Example:
15MBtypestring
MIME type of the file
Example:
application/pdftypeIdinteger<int32>
Type identifier
Example:
1base64Datastring
Base64 encoded file content
FileContentDto
{
"id": 123,
"name": "document.pdf",
"size": "15MB",
"type": "application/pdf",
"typeId": 1,
"base64Data": "string"
}