UNPKG

@alba-cars/common-modules

Version:

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

30 lines (29 loc) 695 B
export declare class BankValuationRequestCreateDto { name: string; email?: string; phone: string; bankName: string; bankerEmail?: string; makeDealDriveId?: string; make: string; modelDealDriveId?: string; model: string; trimDealDriveId?: string; trim?: string; year: number; color?: string; vin: string; engineSize: number; engineNumber: string; mileage: number; specs: string; value: number; comments?: string; images?: string[]; createdById?: string; sessionId?: string; } export declare class BankValuationRequestUpdateDto { comments?: string; status?: string; }