/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type AssociationIdMapValue = { associationId?: string; associationType?: AssociationIdMapValue.associationType; className?: string; entityId?: number; entityName?: string; } export namespace AssociationIdMapValue { export enum associationType { AUTO_ID = 'AUTO_ID', TAG_ID = 'TAG_ID', } }