/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 3ccfdc156a2f */ import * as z from "zod/v4"; export type DeleteWorkspaceGlobals = { /** * 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 DeleteWorkspaceRequest = { /** * Unique identifier for the workspace. */ id: string; }; /** @internal */ export type DeleteWorkspaceRequest$Outbound = { id: string; }; /** @internal */ export const DeleteWorkspaceRequest$outboundSchema: z.ZodType< DeleteWorkspaceRequest$Outbound, DeleteWorkspaceRequest > = z.object({ id: z.string(), }); export function deleteWorkspaceRequestToJSON( deleteWorkspaceRequest: DeleteWorkspaceRequest, ): string { return JSON.stringify( DeleteWorkspaceRequest$outboundSchema.parse(deleteWorkspaceRequest), ); }