Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressResponse
Description
Response to [RpcGetFileProgressRequest]
Properties
Name |
JsonSchemaType |
Description |
processedSize |
integer |
Size of the already created file part. If processedSize==totalSize, the file is ready for download via [RpcGetFilePartRequest]. |
totalSize |
integer |
Estimated size of the file in bytes. Can be used to display progress, but the resulting size may be different. Currently, only 32bit sizes are supported. |
Dual message (request/response)
Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressRequest |
Referenced in messages
No references.JsonSchema
{
"title": "Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressResponse",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressResponse"
],
"properties": {
"Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressResponse": {
"$ref": "#/definitions/RpcGetFileProgressResponse"
}
},
"definitions": {
"RpcGetFileProgressResponse": {
"additionalProperties": false,
"required": [
"processedSize",
"totalSize"
],
"type": "object",
"properties": {
"processedSize": {
"type": "integer"
},
"totalSize": {
"type": "integer"
}
}
}
}
}