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