Files
DentalManagementMH05/packages/db/shared/schemas/variants/result/ServiceLineTransaction.result.d.ts

46 lines
1.4 KiB
TypeScript

import * as z from 'zod';
export declare const ServiceLineTransactionResultSchema: z.ZodObject<{
id: z.ZodNumber;
paymentId: z.ZodNumber;
serviceLineId: z.ZodNumber;
transactionId: z.ZodNullable<z.ZodString>;
paidAmount: z.ZodNumber;
adjustedAmount: z.ZodNumber;
method: z.ZodEnum<["EFT", "CHECK", "CASH", "CARD", "OTHER"]>;
receivedDate: z.ZodDate;
payerName: z.ZodNullable<z.ZodString>;
notes: z.ZodNullable<z.ZodString>;
createdAt: z.ZodDate;
payment: z.ZodUnknown;
serviceLine: z.ZodUnknown;
}, "strict", z.ZodTypeAny, {
id: number;
createdAt: Date;
notes: string | null;
paymentId: number;
transactionId: string | null;
paidAmount: number;
adjustedAmount: number;
method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD";
receivedDate: Date;
payerName: string | null;
serviceLineId: number;
payment?: unknown;
serviceLine?: unknown;
}, {
id: number;
createdAt: Date;
notes: string | null;
paymentId: number;
transactionId: string | null;
paidAmount: number;
adjustedAmount: number;
method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD";
receivedDate: Date;
payerName: string | null;
serviceLineId: number;
payment?: unknown;
serviceLine?: unknown;
}>;
export type ServiceLineTransactionResultType = z.infer<typeof ServiceLineTransactionResultSchema>;
//# sourceMappingURL=ServiceLineTransaction.result.d.ts.map