addded typevalue/dict description

This commit is contained in:
Timo 2021-01-11 15:44:14 +02:00
parent a1c7ef69b6
commit 82e9bf6979
3 changed files with 13 additions and 0 deletions

View File

@ -42,4 +42,8 @@ export interface Dictionary {
* The RuleSet Id for this type
*/
ruleSetId?: string;
/**
* The description of this dictionary
*/
description?: string;
}

View File

@ -45,6 +45,11 @@ export interface TypeValue {
*/
ruleSetId?: string;
/**
* The description of this dictionary
*/
description?: string;
isDefaultFilter?: boolean;
virtual?: boolean;

View File

@ -34,4 +34,8 @@ export interface UpdateTypeValue {
* True if the type just for recommendations, not for redaction, default is false.
*/
recommendation?: boolean;
/**
* The description of this dictionary
*/
description?: string;
}