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