interface ServiceDTO {
    _id?: string;
    bookable?: boolean;
    createdDate?: Date;
    deleted: boolean;
    description?: string;
    hoursRequested?: number;
    id?: string;
    images?: string[];
    modifiedDate?: Date;
    name: string;
    operator: string;
    price?: number;
    rezdyExtraId?: number;
    serviceLibrary?: string;
    timing?: ServiceTiming;
    type: models.services.ServiceType;
    user: string;
}

Hierarchy

  • Omit<Service, ServiceFieldsToOmit>
    • ServiceDTO

Properties

_id?: string
bookable?: boolean
createdDate?: Date
deleted: boolean
description?: string
hoursRequested?: number
id?: string

Use _id instead

images?: string[]
modifiedDate?: Date
name: string
operator: string
price?: number
rezdyExtraId?: number
serviceLibrary?: string
timing?: ServiceTiming
user: string