Properties
Name | Access | Type | Description |
---|---|---|---|
Content | Read | Content | Content |
ContentId | Read, Write | Nullable of Guid | Content Id |
ContentUrl | Read, Write | String | Content Url |
CreatedDate | Read, Write | DateTime | Created Date |
Errors | Read | IList of Error | Errors |
TypeId | Read, Write | Nullable of Guid | Type Id |
User | Read, Write | User | User |
UserId | Read, Write | Int32 | User Id |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $bookmark.HasErrors())
JavaScript
var booleanResponse = bookmark.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $bookmark.HasWarnings())
JavaScript
var booleanResponse = bookmark.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $bookmark.HasWarningsOrErrors())
JavaScript
var booleanResponse = bookmark.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$bookmark.ThrowErrors()
JavaScript
bookmark.ThrowErrors();