Properties
Name | Access | Type | Description |
---|---|---|---|
ArticleCollection | Read, Write | ArticleCollection | Article Collection |
Author | Read, Write | User | Author |
Categories | Read, Write | ApiList of ArticleVersionCategory | Categories |
ContentId | Read | Guid | Content Id |
ContentTypeId | Read | Guid | Content Type Id |
CreateDate | Read, Write | Nullable of DateTime | Create Date |
DeleteDate | Read, Write | Nullable of DateTime | Delete Date |
Errors | Read | IList of Error | Errors |
Id | Read, Write | Nullable of Guid | Id |
Identifier | Read, Write | String | Identifier |
IsDeleted | Read, Write | Nullable of Boolean | Is Deleted |
IsPendingReview | Read | Nullable of Boolean | Is Pending Review |
IsPublished | Read, Write | Nullable of Boolean | Is Published |
LastUpdateDate | Read, Write | Nullable of DateTime | Last Update Date |
MetaDescription | Read, Write | String | Meta Description |
MetaKeywords | Read, Write | String | Meta Keywords |
MetaTitle | Read, Write | String | Meta Title |
PublishDate | Read, Write | Nullable of DateTime | Publish Date |
PublishEndDate | Read, Write | Nullable of DateTime | Publish End Date |
PublishGroup | Read, Write | PublishGroup | Publish Group |
ReadyToPublish | Read, Write | Nullable of Boolean | Ready To Publish |
SuppressNotifications | Read, Write | Nullable of Boolean | Suppress Notifications |
Tags | Read, Write | ApiList of String | Tags |
Title | Read, Write | String | Title |
Type | Read, Write | ArticleType | Type |
Url | Read, Write | String | Url |
UrlKey | Read, Write | String | Url Key |
Version | Read, Write | Nullable of Guid | Version |
Warnings | Read | IList of Warning | Warnings |
Methods
Body
Body Overload 1
Velocity
#set($stringResponse = $articleVersion.Body())
JavaScript
var stringResponse = articleVersion.Body();
Body Overload 2
Velocity
#set($stringResponse = $articleVersion.Body($postTarget))
JavaScript
var stringResponse = articleVersion.Body(postTarget);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
postTarget | String | Post Target | Required |
Returns
String
HasErrors
Velocity
#set($booleanResponse = $articleVersion.HasErrors())
JavaScript
var booleanResponse = articleVersion.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $articleVersion.HasWarnings())
JavaScript
var booleanResponse = articleVersion.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $articleVersion.HasWarningsOrErrors())
JavaScript
var booleanResponse = articleVersion.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$articleVersion.ThrowErrors()
JavaScript
articleVersion.ThrowErrors();