fhirtypes
Version:
19 lines (18 loc) • 621 B
TypeScript
/**
* @name MedicationRequestStatus
* @description MedicationRequest Status Codes.
* @description active | on-hold | cancelled | completed | entered-in-error | stopped | draft | unknown
* @see <a href="https://hl7.org/fhir/R4/valueset-medicationrequest-status.html">MedicationRequestStatus</a>
* @version R4
* @author Claudia Alarcón Lazo
*/
export declare enum MedicationRequestStatusEnum {
ACTIVE = "active",
ON_HOLD = "on-hold",
CANCELLED = "cancelled",
COMPLETED = "completed",
ENTERED_IN_ERROR = "entered-in-error",
STOPPED = "stopped",
DRAFT = "draft",
UNKNOWN = "unknown"
}