/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: a66206bc221d */ import * as z from "zod/v4"; export type GetManagerDeploymentGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetManagerDeploymentRequest = { /** * Unique identifier for a manager. */ id: string; }; /** @internal */ export type GetManagerDeploymentRequest$Outbound = { id: string; }; /** @internal */ export const GetManagerDeploymentRequest$outboundSchema: z.ZodType< GetManagerDeploymentRequest$Outbound, GetManagerDeploymentRequest > = z.object({ id: z.string(), }); export function getManagerDeploymentRequestToJSON( getManagerDeploymentRequest: GetManagerDeploymentRequest, ): string { return JSON.stringify( GetManagerDeploymentRequest$outboundSchema.parse( getManagerDeploymentRequest, ), ); }