/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4adde6bdd23b */ import * as z from "zod/v4"; export type GetManagerGlobals = { /** * 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 GetManagerRequest = { /** * Unique identifier for a manager. */ id: string; }; /** @internal */ export type GetManagerRequest$Outbound = { id: string; }; /** @internal */ export const GetManagerRequest$outboundSchema: z.ZodType< GetManagerRequest$Outbound, GetManagerRequest > = z.object({ id: z.string(), }); export function getManagerRequestToJSON( getManagerRequest: GetManagerRequest, ): string { return JSON.stringify( GetManagerRequest$outboundSchema.parse(getManagerRequest), ); }