Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Content | Read | Content | Content |
| Errors | Read | IList of Error | Errors |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $contentRecommendation.HasErrors())
JavaScript
var booleanResponse = contentRecommendation.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $contentRecommendation.HasWarnings())
JavaScript
var booleanResponse = contentRecommendation.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $contentRecommendation.HasWarningsOrErrors())
JavaScript
var booleanResponse = contentRecommendation.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$contentRecommendation.ThrowErrors()
JavaScript
contentRecommendation.ThrowErrors();