import type { GraphNodeExtendedAttributeDTO } from './GraphNodeExtendedAttributeDTO'; import type { GraphNodePosition } from './GraphNodePosition'; import type { GraphNodeReferenceDTO } from './GraphNodeReferenceDTO'; export type GraphNodeDTO = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; id?: string; graphModelId?: string; displayName?: string; position?: GraphNodePosition; nodeType?: string; references?: Array; extendedAttributes?: Array; type?: string; };