import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TopicResponseDto = { /** * The identifier of the topic */ id: string; /** * The unique key of the topic */ key: string; /** * The name of the topic */ name?: string | undefined; /** * The date the topic was created */ createdAt?: string | undefined; /** * The date the topic was last updated */ updatedAt?: string | undefined; }; /** @internal */ export declare const TopicResponseDto$inboundSchema: z.ZodType; export declare function topicResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicresponsedto.d.ts.map