Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
Response | Read | String | Response |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $automationExecutionResponse.HasErrors())
JavaScript
var booleanResponse = automationExecutionResponse.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $automationExecutionResponse.HasWarnings())
JavaScript
var booleanResponse = automationExecutionResponse.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $automationExecutionResponse.HasWarningsOrErrors())
JavaScript
var booleanResponse = automationExecutionResponse.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$automationExecutionResponse.ThrowErrors()
JavaScript
automationExecutionResponse.ThrowErrors();