Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Answer | Read | String | Answer |
| AnswerId | Read | String | Answer Id |
| Errors | Read | IList of Error | Errors |
| OrderNumber | Read | Int32 | Order Number |
| Total | Read | Int32 | Total |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $pollItem.HasErrors())
JavaScript
var booleanResponse = pollItem.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $pollItem.HasWarnings())
JavaScript
var booleanResponse = pollItem.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $pollItem.HasWarningsOrErrors())
JavaScript
var booleanResponse = pollItem.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$pollItem.ThrowErrors()
JavaScript
pollItem.ThrowErrors();