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