interface Transfer {
    _id?: string;
    airportTransfer?: boolean;
    bookable?: boolean;
    createdDate?: Date;
    deleted: boolean;
    description?: string;
    flightWindow?: TransferFlightWindow;
    fromCity?: string;
    hoursRequested?: number;
    id?: string;
    images?: string[];
    length: number;
    modifiedDate?: Date;
    name: string;
    numberOfTransfers?: number;
    operator?: string | Operator;
    price?: number;
    rezdyExtraId?: number;
    serviceLibrary?: string;
    startTime?: string;
    timing?: ServiceTiming;
    toCity?: string;
    type: TRANSFER;
    user: string | User;
    vehicleType?: VehicleType;
}

Hierarchy

  • BaseServiceModel
    • Transfer

Properties

_id?: string
airportTransfer?: boolean
bookable?: boolean
createdDate?: Date
deleted: boolean
description?: string
flightWindow?: TransferFlightWindow
fromCity?: string
hoursRequested?: number
id?: string

Use _id instead

images?: string[]
length: number
modifiedDate?: Date
name: string
numberOfTransfers?: number
operator?: string | Operator
price?: number
rezdyExtraId?: number
serviceLibrary?: string
startTime?: string
timing?: ServiceTiming
toCity?: string
type: TRANSFER
user: string | User
vehicleType?: VehicleType