Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressRequest

Description

Request information about progress in creating a file to download (E.g. "offline" installer).
This request is called repeatedly to download monitor creation of the file,
started previously by another request (e.g. [RpcGetInstallerRequest]).
After 100% progress is reported, you can downloading the file by calling [RpcGetFilePartRequest].

Properties

Name JsonSchemaType Description
ID integer ID of the generated file returned by, for example, [RpcGetInstallerResponse].

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressResponse

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressRequest",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressRequest"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Common.RpcGetFileProgressRequest": {
            "$ref": "#/definitions/RpcGetFileProgressRequest"
        }
    },
    "definitions": {
        "RpcGetFileProgressRequest": {
            "additionalProperties": false,
            "required": [
                "ID"
            ],
            "type": "object",
            "properties": {
                "ID": {
                    "type": "integer"
                }
            }
        }
    }
}