Properties
| Name | Access | Type | Description | 
|---|---|---|---|
| Errors | Read | IList of Error | Errors | 
| GroupId | Read, Write | Nullable of Int32 | Group Id | 
| IsReadOnly | Read, Write | Nullable of Boolean | Is Read Only | 
| LastModifiedDate | Read, Write | Nullable of DateTime | Last Modified Date | 
| MetaDescription | Read, Write | String | Meta Description | 
| MetaKeywords | Read, Write | String | Meta Keywords | 
| MetaTitle | Read, Write | String | Meta Title | 
| PageId | Read, Write | Nullable of Int32 | Page Id | 
| PageKey | Read, Write | String | Page Key | 
| ParentPageId | Read, Write | Nullable of Int32 | Parent Page Id | 
| RevisionNumber | Read, Write | Nullable of Int32 | Revision Number | 
| SearchUniqueId | Read | String | Search Unique Id | 
| Tags | Read, Write | String | Tags | 
| Title | Read, Write | String | Title | 
| Url | Read, Write | String | Url | 
| User | Read, Write | User | User | 
| Warnings | Read | IList of Warning | Warnings | 
| WikiId | Read, Write | Nullable of Int32 | Wiki Id | 
Methods
Body
Body Overload 1
Velocity
#set($stringResponse = $wikiPageRevision.Body())
JavaScript
var stringResponse = wikiPageRevision.Body();
Body Overload 2
Velocity
#set($stringResponse = $wikiPageRevision.Body($postTarget))
JavaScript
var stringResponse = wikiPageRevision.Body(postTarget);
Parameters
| Name | Type | Description | Required | Default | Options | 
|---|---|---|---|---|---|
| postTarget | String | Post Target | Required | 
Returns
StringHasErrors
Velocity
#set($booleanResponse = $wikiPageRevision.HasErrors())
JavaScript
var booleanResponse = wikiPageRevision.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $wikiPageRevision.HasWarnings())
JavaScript
var booleanResponse = wikiPageRevision.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $wikiPageRevision.HasWarningsOrErrors())
JavaScript
var booleanResponse = wikiPageRevision.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$wikiPageRevision.ThrowErrors()
JavaScript
wikiPageRevision.ThrowErrors();
 
				