Properties
Name | Access | Type | Description |
---|---|---|---|
AvatarUrl | Read, Write | String | Avatar Url |
ClientId | Read, Write | String | Client Id |
ClientType | Read, Write | String | Client Type |
CommonName | Read, Write | String | Common Name |
Read, Write | String | ||
Errors | Read | IList of Error | Errors |
UserName | Read, Write | String | User Name |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $oAuthData.HasErrors())
JavaScript
var booleanResponse = oAuthData.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $oAuthData.HasWarnings())
JavaScript
var booleanResponse = oAuthData.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $oAuthData.HasWarningsOrErrors())
JavaScript
var booleanResponse = oAuthData.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$oAuthData.ThrowErrors()
JavaScript
oAuthData.ThrowErrors();