Properties
Name | Access | Type | Description |
---|---|---|---|
Author | Read | User | Author |
AuthorUserId | Read, Write | Int32 | Author User Id |
CreatedDate | Read, Write | DateTime | Created Date |
Errors | Read | IList of Error | Errors |
Id | Read | Int32 | Id |
Idea | Read | Idea | Idea |
RawNote | Read, Write | String | Raw Note |
Status | Read | Status | Status |
StatusKey | Read, Write | String | Status Key |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $ideaStatus.HasErrors())
JavaScript
var booleanResponse = ideaStatus.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $ideaStatus.HasWarnings())
JavaScript
var booleanResponse = ideaStatus.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $ideaStatus.HasWarningsOrErrors())
JavaScript
var booleanResponse = ideaStatus.HasWarningsOrErrors();
Returns
Boolean
Note
Note Overload 1
Velocity
#set($stringResponse = $ideaStatus.Note())
JavaScript
var stringResponse = ideaStatus.Note();
Note Overload 2
Velocity
#set($stringResponse = $ideaStatus.Note($target))
JavaScript
var stringResponse = ideaStatus.Note(target);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
target | String | Target | Required |
Returns
String
ThrowErrors
Velocity
$ideaStatus.ThrowErrors()
JavaScript
ideaStatus.ThrowErrors();