UNPKG

fhirbuilder

Version:
52 lines (51 loc) 1.71 kB
import { ICodeableConcept, IReference } from 'fhirtypes/dist/r4'; import { IConditionEvidence, IOperationOutcome } from 'fhirtypes/dist/r4'; import { BackboneElement, IValidatable, ISerializable } from '../base'; /** * @version R4 (v4.0.1) * @summary FHIR® Specification by HL7® * @description Class for ConditionEvidence BackboneElement undefined * @property {ICodeableConcept[]} code * @property {IReference[]} detail * @author Roberto Araneda Espinoza */ export declare class ConditionEvidence extends BackboneElement implements IConditionEvidence, IValidatable, ISerializable { /** * @description A manifestation or symptom that led to the recording of this condition. */ code?: ICodeableConcept[]; /** * @description Links to other relevant information, including pathology reports. */ detail?: IReference[]; /** * @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?: IConditionEvidence); }