Interface IServiceFilters

interface IServiceFilters {
    category?:
        | "HAIRCUT"
        | "BEARD"
        | "STYLING"
        | "COLORING"
        | "TREATMENT"
        | "PACKAGE";
    isActive?: boolean;
    maxDuration?: number;
    maxPrice?: number;
    minDuration?: number;
    minPrice?: number;
    requiresConsultation?: boolean;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

category?:
    | "HAIRCUT"
    | "BEARD"
    | "STYLING"
    | "COLORING"
    | "TREATMENT"
    | "PACKAGE"
isActive?: boolean
maxDuration?: number
maxPrice?: number
minDuration?: number
minPrice?: number
requiresConsultation?: boolean