import type { Prisma } from '../../generated/prisma'; import * as z from 'zod'; import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './objects/PaymentWhereInput.schema'; export const PaymentDeleteManySchema: z.ZodType = z.object({ where: PaymentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; export const PaymentDeleteManyZodSchema = z.object({ where: PaymentWhereInputObjectSchema.optional() }).strict();