interface CreateRequest {
    categoryPolicyItems?: PolicyItem[];
    name: string;
    parentCategoryId?: string;
    restricted?: boolean;
}

Hierarchy (View Summary)

Properties

categoryPolicyItems?: PolicyItem[]
name: string

Name of category to add

parentCategoryId?: string

Id of parent category to add the category as a child category. If specified, the Id needs to exist in Rev.

restricted?: boolean

When true, the category is restricted and only the users/groups in categoryPolicyItems may add or edit content in the category or modify the category itself.