interface WorkshopSpaceLibrary {
    _id?: string;
    acceptedByHost?: boolean;
    bookable?: boolean;
    createdDate?: Date;
    deleted: boolean;
    description: string;
    hoursAvailable: number;
    hoursRequested?: number;
    id?: string;
    images?: string[];
    location?: string;
    modifiedDate?: Date;
    name: string;
    operator?: string | Operator;
    price?: number;
    pricePerHour: number;
    rezdyExtraId?: number;
    timeAvailableStart: string;
    timing?: ServiceTiming;
    type: WORKSHOP_SPACE;
    user: string | User;
}

Hierarchy

Properties

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

Use _id instead

images?: string[]
location?: string
modifiedDate?: Date
name: string
operator?: string | Operator
price?: number
pricePerHour: number
rezdyExtraId?: number
timeAvailableStart: string
timing?: ServiceTiming
user: string | User