/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 231619878548 */ import * as z from "zod/v4"; export type WhoamiGlobals = { /** * 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 WhoamiRequest = {}; /** @internal */ export type WhoamiRequest$Outbound = {}; /** @internal */ export const WhoamiRequest$outboundSchema: z.ZodType< WhoamiRequest$Outbound, WhoamiRequest > = z.object({}); export function whoamiRequestToJSON(whoamiRequest: WhoamiRequest): string { return JSON.stringify(WhoamiRequest$outboundSchema.parse(whoamiRequest)); }