Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Application | Read, Write | String | Application |
| Body | Read, Write | String | Body |
| Date | Read, Write | DateTime | Date |
| Errors | Read | IList of Error | Errors |
| Title | Read, Write | String | Title |
| Url | Read, Write | String | Url |
| User | Read, Write | User | User |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $taggedContent.HasErrors())
JavaScript
var booleanResponse = taggedContent.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $taggedContent.HasWarnings())
JavaScript
var booleanResponse = taggedContent.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $taggedContent.HasWarningsOrErrors())
JavaScript
var booleanResponse = taggedContent.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$taggedContent.ThrowErrors()
JavaScript
taggedContent.ThrowErrors();