import * as z from "zod/v3"; export type ReminderRequest = { /** * The document which the verification is for new reminders and/or update. */ documentId: string; /** * The obfuscated id of the person this verification is assigned to. */ assignee?: string | undefined; /** * Reminder for the next verifications in terms of days. For deletion, this will be omitted. */ remindInDays?: number | undefined; /** * An optional free-text reason for the reminder. This is particularly useful when a reminder is used to ask for verification from another user (for example, "Duplicate", "Incomplete", "Incorrect"). */ reason?: string | undefined; }; /** @internal */ export type ReminderRequest$Outbound = { documentId: string; assignee?: string | undefined; remindInDays?: number | undefined; reason?: string | undefined; }; /** @internal */ export declare const ReminderRequest$outboundSchema: z.ZodType; export declare function reminderRequestToJSON(reminderRequest: ReminderRequest): string; //# sourceMappingURL=reminderrequest.d.ts.map