import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TopicDto = { /** * The internal unique identifier of the topic */ id: string; /** * The key identifier of the topic used in your application. Should be unique on the environment level. */ key: string; /** * The name of the topic */ name?: string | undefined; }; /** @internal */ export declare const TopicDto$inboundSchema: z.ZodType; export declare function topicDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicdto.d.ts.map