Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportFileResponse
Description
File information of the pending file download of an aggregated export.
Properties
Name |
JsonSchemaType |
Description |
file_id |
integer |
ID of the generated file, this ID should be used to get (download) the file contents. |
file_name |
string |
Name of the file. |
file_size |
integer |
Size of the file in bytes. |
Dual message (request/response)
Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportFileRequest |
Referenced in messages
No references.JsonSchema
{
"title": "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportFileResponse",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportFileResponse"
],
"properties": {
"Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportFileResponse": {
"$ref": "#/definitions/RpcAggregatedExportFileResponse"
}
},
"definitions": {
"RpcAggregatedExportFileResponse": {
"additionalProperties": false,
"required": [
"file_id",
"file_name",
"file_size"
],
"type": "object",
"properties": {
"file_id": {
"type": "integer"
},
"file_name": {
"type": "string"
},
"file_size": {
"type": "integer"
}
}
}
}
}