UNPKG

@alba-cars/common-modules

Version:

A package containing DTOs, validation classes and common modules and interfaces for Alba Cars

15 lines (14 loc) 386 B
import { BaseModel } from "./Base"; import { Payment } from "./Payment"; import { Vehicle } from "./Vehicle"; export declare class VehicleOrder extends BaseModel { userId: string; vehicleId: string; paymentId: string; orderAmount: number; reservationComment: string; cancellationComment: string; status: string; vehicle: Vehicle; payment: Payment; }