Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Body | Read, Write | String | Body |
| Errors | Read | IList of Error | Errors |
| Id | Read, Write | Int32 | Id |
| Name | Read, Write | String | Name |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $message.HasErrors())
JavaScript
var booleanResponse = message.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $message.HasWarnings())
JavaScript
var booleanResponse = message.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $message.HasWarningsOrErrors())
JavaScript
var booleanResponse = message.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$message.ThrowErrors()
JavaScript
message.ThrowErrors();