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