@alba-cars/common-modules
Version:
A package containing DTOs, validation classes and common modules and interfaces for Alba Cars
19 lines (18 loc) • 495 B
TypeScript
import { BaseModel } from "./Base";
import { VehicleOrder } from "./VehicleOrder";
export declare class Payment extends BaseModel {
userId: string;
requestId: string;
vehicleId: number;
transactionId: string;
paymentStatus: string;
paymentResponse: string;
amountPaid: number;
tokenId: string;
state: string;
failureReason: string;
failureCode: string;
accountId: string;
paymentDate: Date;
vehicleOrder: VehicleOrder;
}