Skip to content

AppointmentRequestOrderKeys

Appointment Request sorting enum

Used By

Definition

"""
Appointment Request sorting enum
"""
enum AppointmentRequestOrderKeys {
date_asc
date_desc
appt_type
client_name
req_provider
new_clients
active_clients
"""
Sort by requested date, earliest first. A request with several slots is positioned by its earliest slot, regardless of any range_start/range_end filter. Requests with no slots sort last.
"""
requested_date_asc
"""
Sort by requested date, latest first. A request with several slots is positioned by its earliest slot, regardless of any range_start/range_end filter. Requests with no slots sort last.
"""
requested_date_desc
}