Properties
Name | Access | Type | Description |
---|---|---|---|
Application | Read | Application | Application |
Author | Read | User | Author |
ContentId | Read | Nullable of Guid | Content Id |
ContentTypeId | Read | Guid | Content Type Id |
CreatedDate | Read | DateTime | Created Date |
Data | Read | ReadOnlyReviewableContentData | Data |
Errors | Read | IList of Error | Errors |
History | Read | IList of ReviewableContentHistory | History |
Id | Read | Guid | Id |
IsDeleted | Read | Boolean | Is Deleted |
IsPendingReview | Read | Boolean | Is Pending Review |
IsPublished | Read | Boolean | Is Published |
Status | Read | String | Status |
Title | Read | String | Title |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $reviewableContent.HasErrors())
JavaScript
var booleanResponse = reviewableContent.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $reviewableContent.HasWarnings())
JavaScript
var booleanResponse = reviewableContent.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $reviewableContent.HasWarningsOrErrors())
JavaScript
var booleanResponse = reviewableContent.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$reviewableContent.ThrowErrors()
JavaScript
reviewableContent.ThrowErrors();