/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 23f2d9910086 */ import * as z from "zod/v4"; export type GetSetupRegistrationOperationGlobals = { /** * 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 GetSetupRegistrationOperationRequest = { /** * Unique identifier for the setup registration operation. */ id: string; }; /** @internal */ export type GetSetupRegistrationOperationRequest$Outbound = { id: string; }; /** @internal */ export const GetSetupRegistrationOperationRequest$outboundSchema: z.ZodType< GetSetupRegistrationOperationRequest$Outbound, GetSetupRegistrationOperationRequest > = z.object({ id: z.string(), }); export function getSetupRegistrationOperationRequestToJSON( getSetupRegistrationOperationRequest: GetSetupRegistrationOperationRequest, ): string { return JSON.stringify( GetSetupRegistrationOperationRequest$outboundSchema.parse( getSetupRegistrationOperationRequest, ), ); }