import type { AssociatedEntity } from './AssociatedEntity'; export type CustomAttributeFrontEndDTO = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; id?: string; name?: string; valueType?: CustomAttributeFrontEndDTO.valueType; scope: CustomAttributeFrontEndDTO.scope; associatedEntityTypes?: Array; associatedEntities?: Array; valuesEntityTypes?: Array; values?: Array; type?: string; }; export declare namespace CustomAttributeFrontEndDTO { enum valueType { STRING = "STRING", LONG_TEXT = "LONG_TEXT" } enum scope { ORGANIZATION = "organization", APPLICATION_DOMAIN = "applicationDomain" } }