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