fhirtypes
Version:
10 lines (9 loc) • 402 B
TypeScript
/**
* @name ParticipationStatus
* @description The Participation status of an appointment.
* @description accepted | declined | tentative | needs-action
* @see <a href="https://hl7.org/fhir/R4/valueset-participationstatus.html">ParticipationStatus</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
export type ParticipationStatusType = 'accepted' | 'declined' | 'tentative' | 'needs-action';