Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcRemovePoolByPoolIdRequest
Description
Remove seat pools by their IDs. Usable with online pools and offline files either.
Properties
Name |
JsonSchemaType |
Description |
seatPoolIds |
array of string |
IDs of the pools to remove. |
Dual message (request/response)
Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcRemovePoolByPoolIdResponse |
Referenced in messages
No references.JsonSchema
{
"title": "Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcRemovePoolByPoolIdRequest",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcRemovePoolByPoolIdRequest"
],
"properties": {
"Era.Common.NetworkMessage.ConsoleApi.Licenses.RpcRemovePoolByPoolIdRequest": {
"$ref": "#/definitions/RpcRemovePoolByPoolIdRequest"
}
},
"definitions": {
"RpcRemovePoolByPoolIdRequest": {
"additionalProperties": false,
"type": "object",
"properties": {
"seatPoolIds": {
"type": "array",
"items": [
{
"maxLength": 1024,
"pattern": "\\s*.{1,}\\s*",
"type": "string"
}
]
}
}
}
}
}