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