/** * @type ModelConfiguration: Configuration object * * @property id: identifier * - **Max Length:** 255 * * @property value: value for identifier * - **Max Length:** 255 * * @property configurationType: type of configuration value * - **Max Length:** 255 * */ export type ModelConfiguration = { id: string; value: any | null; configurationType?: string; } & { [key: string]: any; };