20 lines
1.2 KiB
TypeScript
20 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const PdfGroupCreateWithoutPatientInputObjectSchema: z.ZodType<Prisma.PdfGroupCreateWithoutPatientInput>;
|
|
export declare const PdfGroupCreateWithoutPatientInputObjectZodSchema: z.ZodObject<{
|
|
title: z.ZodString;
|
|
titleKey: z.ZodOptional<z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
pdfs: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PdfFileCreateNestedManyWithoutGroupInput, z.ZodTypeDef, Prisma.PdfFileCreateNestedManyWithoutGroupInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
title: string;
|
|
createdAt?: Date | undefined;
|
|
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
|
|
pdfs?: Prisma.PdfFileCreateNestedManyWithoutGroupInput | undefined;
|
|
}, {
|
|
title: string;
|
|
createdAt?: Date | undefined;
|
|
titleKey?: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER" | undefined;
|
|
pdfs?: Prisma.PdfFileCreateNestedManyWithoutGroupInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PdfGroupCreateWithoutPatientInput.schema.d.ts.map
|