Era.Common.NetworkMessage.ConsoleApi.Security.RpcSetUserTimeZoneRequest

Description

Sets time zone for the current user.

Properties

Name JsonSchemaType Description
consoleTimeZoneDayLightSaving boolean If true, the day light saving offset is added to [consoleTimeZoneOffsetMinutes]. If [consoleTimeZoneOffsetMinutes] is not set, this value is ignored (should not be not set).
consoleTimeZoneOffsetMinutes integer For the currently logged in user, the console will display all times (if not stated otherwise) with this offset. If not set, browser's local time is used. The offset is positive for east, negative for west.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.Security.RpcSetUserTimeZoneResponse

Referenced in messages

No references.

JsonSchema

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