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