Skip to main content

FileContentDto

File response data transfer object

idinteger<int64>

Unique identifier of the file

Example: 123
namestring

Name of the file

Example: document.pdf
sizestring

Size of the file (human-readable)

Example: 15MB
typestring

MIME type of the file

Example: application/pdf
typeIdinteger<int32>

Type identifier

Example: 1
base64Datastring

Base64 encoded file content

FileContentDto
{
"id": 123,
"name": "document.pdf",
"size": "15MB",
"type": "application/pdf",
"typeId": 1,
"base64Data": "string"
}