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