ValidationCommandResponse
Type, Introduced in version 2.18
This is the response type returned when adding /Validate after the command
path.
Properties
| Name | Type | Summary | Introduced in |
|---|---|---|---|
| IsValid | Boolean | Specifies if the command was validated or not. |
|
| ErrorMessage | String | The error message thrown by the command if any. |
|
| Results | ApiValidationResult[] | The validation results of the command. |
Example
{
"IsValid": false,
"ErrorMessage": null,
"Results": null
}