/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 11d6e6b6855e */ import * as z from "zod/v4"; export type ListManagersGlobals = { /** * 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 ListManagersRequest = { /** * Search managers by name */ search?: string | undefined; /** * Maximum number of managers to return */ limit?: number | undefined; }; /** @internal */ export type ListManagersRequest$Outbound = { search?: string | undefined; limit?: number | undefined; }; /** @internal */ export const ListManagersRequest$outboundSchema: z.ZodType< ListManagersRequest$Outbound, ListManagersRequest > = z.object({ search: z.string().optional(), limit: z.int().optional(), }); export function listManagersRequestToJSON( listManagersRequest: ListManagersRequest, ): string { return JSON.stringify( ListManagersRequest$outboundSchema.parse(listManagersRequest), ); }