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