Properties
| Name | Access | Type | Description | 
|---|---|---|---|
| Errors | Read | IList of Error | Errors | 
| Name | Read, Write | String | Name | 
| Path | Read, Write | IList of String | Path | 
| Url | Read, Write | String | Url | 
| UserId | Read, Write | Int32 | User Id | 
| Warnings | Read | IList of Warning | Warnings | 
Methods
HasErrors
Velocity
#set($booleanResponse = $userFolder.HasErrors())
JavaScript
var booleanResponse = userFolder.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $userFolder.HasWarnings())
JavaScript
var booleanResponse = userFolder.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $userFolder.HasWarningsOrErrors())
JavaScript
var booleanResponse = userFolder.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$userFolder.ThrowErrors()
JavaScript
userFolder.ThrowErrors();
 
				