Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| Id | Read, Write | Nullable of Int32 | Id |
| ImageUrl | Read, Write | String | Image Url |
| Name | Read, Write | String | Name |
| RangeMaximum | Read, Write | Int32 | Range Maximum |
| RangeMinimum | Read, Write | Int32 | Range Minimum |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $rank.HasErrors())
JavaScript
var booleanResponse = rank.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $rank.HasWarnings())
JavaScript
var booleanResponse = rank.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $rank.HasWarningsOrErrors())
JavaScript
var booleanResponse = rank.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$rank.ThrowErrors()
JavaScript
rank.ThrowErrors();