import { IBackboneElement } from '../base'; import { ICodeableConcept, IPeriod } from '../datatypes'; /** * @name ICoverageException * @description A suite of codes indicating exceptions or reductions to patient costs and their effective periods. * @see CoverageCostToBeneficiaryException * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface ICoverageException extends IBackboneElement { /** * @description The exception category for patient payments. */ type: ICodeableConcept; /** * @description The effective period of the exception. */ period?: IPeriod; }