Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcGetTrialLicenseResponse

Description

Properties

Name JsonSchemaType Description
failedLocationsCount integer Count of locations where trial license wasn't generated.
successfulLocationsCount integer Count of locations where trial license was successfuly generated.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcGetTrialLicenseRequest

Referenced in messages

No references.

JsonSchema

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