interface InfoLibrary {
    _id?: string;
    bookable?: boolean;
    createdDate?: Date;
    deleted: boolean;
    description: string;
    fileUpload?: string;
    hoursRequested?: number;
    id?: string;
    images?: string[];
    modifiedDate?: Date;
    name?: string;
    operator?: string | Operator;
    price?: number;
    rezdyExtraId?: number;
    timing?: ServiceTiming;
    title: string;
    type: INFO;
    user: string | User;
}

Hierarchy

  • ServiceFields<Info>
    • InfoLibrary

Properties

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

Use _id instead

images?: string[]
modifiedDate?: Date
name?: string
operator?: string | Operator
price?: number
rezdyExtraId?: number
timing?: ServiceTiming
title: string
type: INFO
user: string | User