dc/client/src/app/editor/models/dynamicExtendedCellValidation.ts
Mihajlo Medjedovic cd3e0f614b
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 23s
chore: adding comments part 3
2023-08-04 12:05:00 +02:00

14 lines
367 B
TypeScript

/**
* Model for the dynamic cell validation in the editor
* (sending whole row to the backend service and recieving data for the cell dropdown)
*/
export interface DynamicExtendedCellValidation {
DISPLAY_INDEX: number
DISPLAY_TYPE: string
DISPLAY_VALUE: string
EXTRA_COL_NAME: string
RAW_VALUE_CHAR: string
RAW_VALUE_NUM: number
FORCE_FLAG: number
}