import { IEntityWithVersion } from "../../entity_with_version"; import { IDisplayUnitOfMeasure } from "../../engine/display_diagnostic/display_unit_of_measure"; /** * Class to track a single DisplayUnitOfMeasure for a given DisplayMeasurementProfile. * * @deprecated */ export interface IDisplayMeasurementProfileDetail extends IEntityWithVersion { /** Gets or Sets the Identifier of the related Diagnostic. */ diagnosticId: string; /** Gets or sets the matched to the base diagnostic {@link IId} for the profile. */ displayUnitOfMeasure: IDisplayUnitOfMeasure; /** Gets or sets the Identifier of the related profile. */ profileId: string; } //# sourceMappingURL=display_measurement_profile_detail.d.ts.map