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
BooleanHasWarnings
Velocity
#set($booleanResponse = $ideaStatus.HasWarnings())
JavaScript
var booleanResponse = ideaStatus.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $ideaStatus.HasWarningsOrErrors())
JavaScript
var booleanResponse = ideaStatus.HasWarningsOrErrors();
Returns
BooleanNote
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
StringThrowErrors
Velocity
$ideaStatus.ThrowErrors()
JavaScript
ideaStatus.ThrowErrors();