import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const DomainRouteResponseDtoType: { readonly Agent: "agent"; readonly Webhook: "webhook"; }; export type DomainRouteResponseDtoType = ClosedEnum; export type DomainRouteResponseDto = { id: string; domainId: string; address: string; /** * Internal id of the destination agent. Only present for agent routes. */ agentId?: string | undefined; type: DomainRouteResponseDtoType; environmentId: string; organizationId: string; createdAt: string; updatedAt: string; /** * String key-value metadata (max 10 keys, 500 characters total when set via API). */ data?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const DomainRouteResponseDtoType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DomainRouteResponseDto$inboundSchema: z.ZodType; export declare function domainRouteResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=domainrouteresponsedto.d.ts.map