Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
Id | Read, Write | String | Id |
Key | Read, Write | String | Key |
Name | Read, Write | String | Name |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $category.HasErrors())
JavaScript
var booleanResponse = category.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $category.HasWarnings())
JavaScript
var booleanResponse = category.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $category.HasWarningsOrErrors())
JavaScript
var booleanResponse = category.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$category.ThrowErrors()
JavaScript
category.ThrowErrors();