/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type SendDownloadBackupEmailRequest = { filename: string; }; /** @internal */ export const SendDownloadBackupEmailRequest$inboundSchema: z.ZodType< SendDownloadBackupEmailRequest, z.ZodTypeDef, unknown > = z.object({ filename: z.string(), }); /** @internal */ export type SendDownloadBackupEmailRequest$Outbound = { filename: string; }; /** @internal */ export const SendDownloadBackupEmailRequest$outboundSchema: z.ZodType< SendDownloadBackupEmailRequest$Outbound, z.ZodTypeDef, SendDownloadBackupEmailRequest > = z.object({ filename: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace SendDownloadBackupEmailRequest$ { /** @deprecated use `SendDownloadBackupEmailRequest$inboundSchema` instead. */ export const inboundSchema = SendDownloadBackupEmailRequest$inboundSchema; /** @deprecated use `SendDownloadBackupEmailRequest$outboundSchema` instead. */ export const outboundSchema = SendDownloadBackupEmailRequest$outboundSchema; /** @deprecated use `SendDownloadBackupEmailRequest$Outbound` instead. */ export type Outbound = SendDownloadBackupEmailRequest$Outbound; }