Properties
| Name | Access | Type | Description |
|---|---|---|---|
| ArticleCollection | Read, Write | ArticleCollection | Article Collection |
| 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 Int32 | Id |
| IsDeleted | Read, Write | Nullable of Boolean | Is Deleted |
| IsPublished | Read, Write | Nullable of Boolean | Is Published |
| Name | Read, Write | String | Name |
| PublishDate | Read, Write | Nullable of DateTime | Publish Date |
| PublishedVersionCount | Read, Write | Nullable of Int32 | Published Version Count |
| PublishEndDate | Read, Write | Nullable of DateTime | Publish End Date |
| UnpublishedVersionCount | Read, Write | Nullable of Int32 | Unpublished Version Count |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $publishGroup.HasErrors())
JavaScript
var booleanResponse = publishGroup.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $publishGroup.HasWarnings())
JavaScript
var booleanResponse = publishGroup.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $publishGroup.HasWarningsOrErrors())
JavaScript
var booleanResponse = publishGroup.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$publishGroup.ThrowErrors()
JavaScript
publishGroup.ThrowErrors();