IdeaCreateOptions is defined in the Telligent.Evolution.Extensibility.Ideation.Api namespace of Telligent.Evolution.Ideation.dll
Definition
class IdeaCreateOptions
{
int? CategoryId { get; set; }
DateTime? CreatedDateUtc { get; set; }
string Status { get; set; }
string StatusNotes { get; set; }
string Tags { get; set; }
string UrlKey { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| CategoryId | int? | Id of the category to assign the idea to. Optional. | ||
| CreatedDateUtc | DateTime? | The date this idea was created. Current date and time will be used if not specified. | ||
| Status | string | Specify the current status of the idea. Requires 'Manage Idea Status' permission for the ideation. | ||
| StatusNotes | string | Specify additional notes to accompany the idea's status. Requires 'Manage Idea Status' permission for the ideation. | ||
| Tags | string | Comma-separated list of tags to attach to this idea. | ||
| UrlKey | string | Unique url string for idea. Will be generated automatically if not specified. |