Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PaymentMaxAggregateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

50 lines
1.9 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PaymentMaxAggregateInputObjectSchema: z.ZodType<Prisma.PaymentMaxAggregateInputType>;
export declare const PaymentMaxAggregateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodLiteral<true>>;
claimId: z.ZodOptional<z.ZodLiteral<true>>;
patientId: z.ZodOptional<z.ZodLiteral<true>>;
userId: z.ZodOptional<z.ZodLiteral<true>>;
updatedById: z.ZodOptional<z.ZodLiteral<true>>;
totalBilled: z.ZodOptional<z.ZodLiteral<true>>;
totalPaid: z.ZodOptional<z.ZodLiteral<true>>;
totalAdjusted: z.ZodOptional<z.ZodLiteral<true>>;
totalDue: z.ZodOptional<z.ZodLiteral<true>>;
status: z.ZodOptional<z.ZodLiteral<true>>;
notes: z.ZodOptional<z.ZodLiteral<true>>;
icn: z.ZodOptional<z.ZodLiteral<true>>;
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
}, "strict", z.ZodTypeAny, {
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
patientId?: true | undefined;
notes?: true | undefined;
claimId?: true | undefined;
totalBilled?: true | undefined;
totalPaid?: true | undefined;
totalAdjusted?: true | undefined;
totalDue?: true | undefined;
icn?: true | undefined;
updatedAt?: true | undefined;
updatedById?: true | undefined;
}, {
status?: true | undefined;
createdAt?: true | undefined;
id?: true | undefined;
userId?: true | undefined;
patientId?: true | undefined;
notes?: true | undefined;
claimId?: true | undefined;
totalBilled?: true | undefined;
totalPaid?: true | undefined;
totalAdjusted?: true | undefined;
totalDue?: true | undefined;
icn?: true | undefined;
updatedAt?: true | undefined;
updatedById?: true | undefined;
}>;
//# sourceMappingURL=PaymentMaxAggregateInput.schema.d.ts.map