ChallengeUpdateOptions is defined in the Telligent.Evolution.Extensibility.Ideation.Api namespace of Telligent.Evolution.Ideation.dll
Definition
class ChallengeUpdateOptions
{
bool? AllowMultipleVotes { get; set; }
string ApplicationKey { get; set; }
string Description { get; set; }
int? GroupId { get; set; }
bool? IsEnabled { get; set; }
bool? IsModerated { get; set; }
int? MaximumVotesPerIdea { get; set; }
int? MaximumVotesPerUser { get; set; }
string Name { get; set; }
bool? RequiresCategory { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| AllowMultipleVotes | bool? | Does the ideation allow users to vote multiple times for the same idea. | ||
| ApplicationKey | string | Represents an ideation uniquely, specifically for use within urls. | ||
| Description | string | Provides a detailed description of the ideation subject matter. | ||
| GroupId | int? | The group this ideation will reside in. | ||
| IsEnabled | bool? | Is the ideation enabled for use. | ||
| IsModerated | bool? | Should ideas posted to this ideation be reviewd by moderators before becoming public. | ||
| MaximumVotesPerIdea | int? | The maximum number of votes a user can cast for a given idea. Setting to zero(0) will allow a user to use as many votes as they have available on any idea. This setting is only valid when multiple votes are permitted. | ||
| MaximumVotesPerUser | int? | The maximum number of votes a user can cast within this ideation. To reset this back to 1 vote per user per idea, set it to 0. | ||
| Name | string | The public name of this ideation as it will appear on the site. | ||
| RequiresCategory | bool? | Does the ideation require a category to be set for ideas. |