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