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