A Blog entity
Properties
| Name | Access | Type | Description |
|---|---|---|---|
| AboutDescription | Read, Write | String | About Description |
| AboutTitle | Read, Write | String | About Title |
| ApplicationId | Read, Write | Guid | A Guid uniquely identifying the application. |
| Authors | Read, Write | IList of User | Authors |
| CommentCount | Read, Write | Int32 | Comment Count |
| Container | Read | Container | The container in which the application is located. |
| ContentId | Read | Guid | A Guid uniquely identifying the content. |
| DateCreated | Read, Write | Nullable of DateTime | Date when blog was created |
| DefaultPostImageUrl | Read, Write | String | Default Post Image Url |
| Description | Read, Write | String | Description of the blog |
| EnableAbout | Read, Write | Boolean | Enable About |
| EnableCommentsOverride | Read, Write | Boolean | Enable Comments Override |
| EnableCrossPostingDefault | Read | Boolean | Enable Cross Posting Default |
| Enabled | Read, Write | Boolean | Enabled |
| Errors | Read | IList of Error | Errors |
| ExtendedAttributes | Read, Write | ApiList of ExtendedAttribute | Extended Attributes |
| Group | Read, Write | Group | Group to which the blog belongs |
| Id | Read, Write | Nullable of Int32 | Id |
| Key | Read, Write | String | Key |
| LatestPostDate | Read, Write | Nullable of DateTime | Date of blog's most recent post |
| Name | Read, Write | String | Name of the blog |
| PostCount | Read, Write | Int32 | Post Count |
| PostsHaveReviewWorkflow | Read | Boolean | Posts Have Review Workflow |
| PostSummaryDefault | Read | Boolean | Post Summary Default |
| PostSummaryLengthDefault | Read, Write | Int32 | Post Summary Length Default |
| ShowContact | Read, Write | Boolean | Show Contact |
| ThemeId | Read | Nullable of Guid | Theme Id |
| Url | Read, Write | String | URL of the blog |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $blog.HasErrors())
JavaScript
var booleanResponse = blog.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $blog.HasWarnings())
JavaScript
var booleanResponse = blog.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $blog.HasWarningsOrErrors())
JavaScript
var booleanResponse = blog.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$blog.ThrowErrors()
JavaScript
blog.ThrowErrors();