CategoryUpdateOptions is defined in the Telligent.Evolution.Extensibility.Api.Version1 namespace of Telligent.Evolution.Articles.dll
Definition
class CategoryUpdateOptions
{
Guid? DefaultArticleId { get; set; }
string Description { get; set; }
string ImageFileName { get; set; }
string ImageFileUploadContext { get; set; }
string Name { get; set; }
int? ParentId { get; set; }
bool? RemoveDefaultArticleId { get; set; }
bool? RemoveImage { get; set; }
bool? RemoveParentId { get; set; }
bool? RemoveSortOrder { get; set; }
int? SortOrder { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| DefaultArticleId | Guid? | Id of the article that is the default for the category. | ||
| Description | string | A description of the article category and/or it's contents. | ||
| ImageFileName | string | File Name. Required when updating featured item using FileUploadContext. Optional parameter | ||
| ImageFileUploadContext | string | File Upload Context. When adding an image either FileData or FileUploadContext is required. Optional parameter | ||
| Name | string | Name of the category. | ||
| ParentId | int? | The parent category of the category being created. | ||
| RemoveDefaultArticleId | bool? | Allows removing a categories default article. | ||
| RemoveImage | bool? | Allows removing a categories image. | ||
| RemoveParentId | bool? | Allows removing a categories parent, moving the category to the root level. | ||
| RemoveSortOrder | bool? | Allows resetting a categories sort order. | ||
| SortOrder | int? | Used to determine the order in which the category is displayed alongside other categories. |