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