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