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