/** * @name ParticipationStatus * @description The Participation status of an appointment. * @description accepted | declined | tentative | needs-action * @see ParticipationStatus * @version R4 * @author Claudia Alarcón Lazo */ export type ParticipationStatusType = 'accepted' | 'declined' | 'tentative' | 'needs-action';