Interface IAppointmentFilters

interface IAppointmentFilters {
    barberId?: string;
    customerId?: string;
    endDate?: Date;
    serviceId?: string;
    startDate?: Date;
    status?: "pending" | "confirmed" | "cancelled" | "completed";
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

barberId?: string
customerId?: string
endDate?: Date
serviceId?: string
startDate?: Date
status?: "pending" | "confirmed" | "cancelled" | "completed"