calcom/packages/prisma/zod/remindermail.ts
2022-02-17 11:26:53 -07:00

11 lines
320 B
TypeScript

import * as z from "zod"
import * as imports from "../zod-utils"
import { ReminderType } from "@prisma/client"
export const _ReminderMailModel = z.object({
id: z.number().int(),
referenceId: z.number().int(),
reminderType: z.nativeEnum(ReminderType),
elapsedMinutes: z.number().int(),
createdAt: z.date(),
})