import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional() }).strict(); export const PaymentWhereUniqueInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const PaymentWhereUniqueInputObjectZodSchema = makeSchema();