Properties
Name | Access | Type | Description |
---|---|---|---|
Description | Read | String | Description |
Errors | Read | IList of Error | Errors |
InternalName | Read | String | Internal Name |
IsClosed | Read | Boolean | Is Closed |
IsDefault | Read | Boolean | Is Default |
Key | Read | String | Key |
Name | Read | String | Name |
ReleasesVotes | Read | Boolean | Releases Votes |
ScoreValue | Read | Int32 | Score Value |
SortOrder | Read | Int32 | Sort Order |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $status.HasErrors())
JavaScript
var booleanResponse = status.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $status.HasWarnings())
JavaScript
var booleanResponse = status.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $status.HasWarningsOrErrors())
JavaScript
var booleanResponse = status.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$status.ThrowErrors()
JavaScript
status.ThrowErrors();