fhirtypes
Version:
21 lines (20 loc) • 1.02 kB
TypeScript
import { IBackboneElement } from '../base';
import { ICodeableConcept, IMoney } from '../datatypes';
/**
* @name IClaimResponseTotal
* @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.total">ClaimResponseTotal</a>
* @version R4
* @extends {IBackboneElement}
* @author Claudia Alarcón Lazo
*/
export interface IClaimResponseTotal 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 Monetary total amount associated with the category.
*/
amount: IMoney;
}