fhirtypes
Version:
19 lines (18 loc) • 647 B
TypeScript
import { IBackboneElement, IElement } from '../base';
import { IPeriod } from '../datatypes';
import { EncounterStatusType } from '../types';
export interface IEncounterStatusHistory extends IBackboneElement {
/**
* @description planned | arrived | triaged | in-progress | onleave | finished | cancelled
* @see <a href="https://hl7.org/fhir/R4/valueset-encounter-status.html">EncounterStatus</a>
*/
status: EncounterStatusType;
/**
* @description The time that the episode was in the specified status.
*/
period: IPeriod;
/**
* @description Extensions for status
*/
_status?: IElement;
}