UNPKG

fhirtypes

Version:
33 lines (32 loc) 1.47 kB
import { IBackboneElement, IElement } from '../base'; import { ICodeableConcept, IMoney } from '../datatypes'; /** * @name IClaimResponseAdjudication * @description This resource provides the adjudication details from the processing of a Claim resource. * @see <a href="https://hl7.org/fhir/R4/claimresponse-definitions.html#ClaimResponse.item.adjudication">ClaimResponseAdjudication</a> * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface IClaimResponseAdjudication extends IBackboneElement { /** * @description A code to indicate the information type of this adjudication record. Information types may include the value submitted, maximum values or percentages allowed or payable under the plan, amounts that: the patient is responsible for in aggregate or pertaining to this item; amounts paid by other coverages; and, the benefit payable for this item. */ category: ICodeableConcept; /** * @description A code supporting the understanding of the adjudication result and explaining variance from expected amount. */ reason?: ICodeableConcept; /** * @description Monetary amount associated with the category. */ amount?: IMoney; /** * @description A non-monetary value associated with the category. Mutually exclusive to the amount element above. */ value?: number; /** * @description Extensions for value */ _value?: IElement; }