gcp-nrces-fhir
Version:
Google cloud healthcare api NRCES FHIR implimenataion
16 lines • 641 B
TypeScript
import { ACTOR, CODEABLE_CONCEPT } from "../../config";
import { FhirObjectsMethods } from "../../Interfaces";
import ResourceMain from "../ResourceMai";
export interface PARTICIPANT {
actor: ACTOR;
status: "accepted" | "declined" | "tentative" | "needs-action";
required?: "required" | "optional" | "information-only";
type?: CODEABLE_CONCEPT[];
}
export declare class Participant extends ResourceMain implements FhirObjectsMethods {
private participant;
setObject(_paticipant: PARTICIPANT): void;
getJson(): any;
getObject(options: any): PARTICIPANT;
}
//# sourceMappingURL=Partipant.d.ts.map