UNPKG

fhirbuilder

Version:
61 lines (60 loc) 2.11 kB
import { ICodeableConcept, IQuantity, IMoney, ICoverageException } from 'fhirtypes/dist/r4'; import { ICoverageCostToBeneficiary, IOperationOutcome } from 'fhirtypes/dist/r4'; import { BackboneElement, IValidatable, ISerializable } from '../base'; /** * @version R4 (v4.0.1) * @summary FHIR® Specification by HL7® * @description Class for CoverageCostToBeneficiary BackboneElement * @property {ICodeableConcept} type * @property {IQuantity} valueQuantity * @property {IMoney} valueMoney * @property {ICoverageException[]} exception * @author Roberto Araneda Espinoza */ export declare class CoverageCostToBeneficiary extends BackboneElement implements ICoverageCostToBeneficiary, IValidatable, ISerializable { /** * @description The category of patient centric costs associated with treatment. */ type?: ICodeableConcept; /** * @description The amount due from the patient for the cost category. */ valueQuantity?: IQuantity; /** * @description The amount due from the patient for the cost category. */ valueMoney?: IMoney; /** * @description A suite of codes indicating exceptions or reductions to patient costs and their effective periods. */ exception?: ICoverageException[]; /** * @description Returns a JSON representation of the model * @returns {Record<string, any>} */ toJson(): Record<string, any>; /** * @description Returns a string representation of the model * @returns {string} */ toString(): string; /** * @description Returns a pretty string representation of the model * @returns {string} */ toPrettyString(): string; /** * @description Returns a serialized string representation of the model * @returns {string} */ serialize(): string; /** * @description Validates the model * @returns {isValid: boolean, operationOutcome: IOperationOutcome} */ validate(): { isValid: boolean; operationOutcome: IOperationOutcome; }; constructor(args?: ICoverageCostToBeneficiary); }