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
Boolean
HasWarnings
Velocity
#set($booleanResponse = $message.HasWarnings())
JavaScript
var booleanResponse = message.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $message.HasWarningsOrErrors())
JavaScript
var booleanResponse = message.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$message.ThrowErrors()
JavaScript
message.ThrowErrors();