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