UNPKG

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."

24 lines (23 loc) 681 B
import { BaseModel } from "../../../base-model"; export declare class PaymentModel extends BaseModel { paymentId: string; orderId: string; userId: string | undefined; razorpayPaymentId: string; razorpayOrderId: string; razorpaySignature: string; paymentStatus: string; paymentMethod: string; amount: number; initialPaymentAmount: number; remainingAmount: number; paymentDueDate: string; splitingAmountDetails: SplitingAmountDetails[]; assigneeIds?: string[]; } export declare class SplitingAmountDetails { splitAmount: number; splitPaymentStatus: string; splitPaidDate: Date | null; nextSplitDueDate: Date; }