/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type DeleteAppV1DeprecatedGlobals = { appId?: string | undefined; }; export type DeleteAppV1DeprecatedRequest = { appId?: string | undefined; }; /** @internal */ export type DeleteAppV1DeprecatedRequest$Outbound = { appId?: string | undefined; }; /** @internal */ export const DeleteAppV1DeprecatedRequest$outboundSchema: z.ZodType< DeleteAppV1DeprecatedRequest$Outbound, z.ZodTypeDef, DeleteAppV1DeprecatedRequest > = z.object({ appId: z.string().optional(), }); export function deleteAppV1DeprecatedRequestToJSON( deleteAppV1DeprecatedRequest: DeleteAppV1DeprecatedRequest, ): string { return JSON.stringify( DeleteAppV1DeprecatedRequest$outboundSchema.parse( deleteAppV1DeprecatedRequest, ), ); }