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