PrescriptionMedicationOrderBy
Enum for sorting prescription medications
Used By
Definition
"""Enum for sorting prescription medications"""enum PrescriptionMedicationOrderBy { """ Sort by name in ascending order """ NAME_ASC
""" Sort by name in descending order """ NAME_DESC
""" Sort by start date in ascending order """ START_DATE_ASC
""" Sort by start date in descending order """ START_DATE_DESC
""" Sort by status in ascending order """ STATUS_ASC
""" Sort by status in descending order """ STATUS_DESC
""" Sort by active status first """ ACTIVE_FIRST
""" Sort by inactive status first """ INACTIVE_FIRST
""" Sort by error status first """ ERROR_FIRST
""" Sort by pending status first """ PENDING_FIRST}