import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ListCommandDeploymentsResponseDeploymentGroup = { id: string; name: string; }; export type ListCommandDeploymentsResponseDeployment = { /** * Unique identifier for the deployment. */ id: string; name: string; deploymentGroup?: ListCommandDeploymentsResponseDeploymentGroup | undefined; }; export type ListCommandDeploymentsResponse = { deployments: Array; }; /** @internal */ export declare const ListCommandDeploymentsResponseDeploymentGroup$inboundSchema: z.ZodType; export declare function listCommandDeploymentsResponseDeploymentGroupFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListCommandDeploymentsResponseDeployment$inboundSchema: z.ZodType; export declare function listCommandDeploymentsResponseDeploymentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListCommandDeploymentsResponse$inboundSchema: z.ZodType; export declare function listCommandDeploymentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcommanddeploymentsresponse.d.ts.map