cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
18 lines (17 loc) • 430 B
TypeScript
import { BaseModel } from "../../base-model";
export declare class LeadModel extends BaseModel {
leadId: string;
userId: string;
orderId: string;
orderValue: number;
sendedAmount: number;
leadName: string;
leadNumber: string;
occasionName: string;
occasionDate: Date;
moreInfo: string;
leadProgress: string;
leadStage: string;
approxGuestCount: string;
shareable: string;
}