Properties
Name | Access | Type | Description |
---|---|---|---|
Code | Read, Write | String | Code |
Description | Read, Write | String | Description |
Errors | Read | IList of Error | Errors |
Id | Read, Write | Nullable of Int32 | Id |
Url | Read, Write | String | Url |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $emoticon.HasErrors())
JavaScript
var booleanResponse = emoticon.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $emoticon.HasWarnings())
JavaScript
var booleanResponse = emoticon.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $emoticon.HasWarningsOrErrors())
JavaScript
var booleanResponse = emoticon.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$emoticon.ThrowErrors()
JavaScript
emoticon.ThrowErrors();