Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| PollId | Read | Guid | Poll Id |
| Summary | Read | IEnumerable of OptionSummary | Summary |
| VoteCount | Read | IEnumerable of Int32 | Vote Count |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $voteSummary.HasErrors())
JavaScript
var booleanResponse = voteSummary.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $voteSummary.HasWarnings())
JavaScript
var booleanResponse = voteSummary.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $voteSummary.HasWarningsOrErrors())
JavaScript
var booleanResponse = voteSummary.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$voteSummary.ThrowErrors()
JavaScript
voteSummary.ThrowErrors();