import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SubscriberDto } from "./subscriberdto.js"; import { TopicResponseDto } from "./topicresponsedto.js"; export type TopicSubscriptionResponseDto = { /** * The identifier of the subscription */ id: string; /** * The identifier of the subscription */ identifier: string; /** * The date and time the subscription was created */ createdAt: string; /** * Topic information */ topic: TopicResponseDto; /** * Subscriber information */ subscriber: SubscriberDto; /** * Context keys that scope this subscription (e.g., tenant:org-a, project:proj-123) */ contextKeys?: Array | undefined; }; /** @internal */ export declare const TopicSubscriptionResponseDto$inboundSchema: z.ZodType; export declare function topicSubscriptionResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicsubscriptionresponsedto.d.ts.map