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