import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeploymentGroupInfo = { /** * Unique identifier for the deployment group. */ id: string; /** * Deployment group name. */ name: string; /** * Case-sensitive, URL- and header-safe identifier from the integrating application. */ externalId: string | null; }; /** @internal */ export declare const DeploymentGroupInfo$inboundSchema: z.ZodType; export declare function deploymentGroupInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentgroupinfo.d.ts.map