Properties
Name | Access | Type | Description |
---|---|---|---|
CommentId | Read | Guid | Comment Id |
CreatedDate | Read | DateTime | Created Date |
Errors | Read | IList of Error | Errors |
UpdatedDate | Read | DateTime | Updated Date |
UserId | Read | Int32 | User Id |
Value | Read | Boolean | Value |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $commentVote.HasErrors())
JavaScript
var booleanResponse = commentVote.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $commentVote.HasWarnings())
JavaScript
var booleanResponse = commentVote.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $commentVote.HasWarningsOrErrors())
JavaScript
var booleanResponse = commentVote.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$commentVote.ThrowErrors()
JavaScript
commentVote.ThrowErrors();