import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TopicsV1ControllerGetTopicSubscriberRequest = { /** * The external subscriber id */ externalSubscriberId: string; /** * The topic key */ topicKey: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type TopicsV1ControllerGetTopicSubscriberResponse = { headers: { [k: string]: Array; }; result: components.TopicSubscriberDto; }; /** @internal */ export type TopicsV1ControllerGetTopicSubscriberRequest$Outbound = { externalSubscriberId: string; topicKey: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const TopicsV1ControllerGetTopicSubscriberRequest$outboundSchema: z.ZodType; export declare function topicsV1ControllerGetTopicSubscriberRequestToJSON(topicsV1ControllerGetTopicSubscriberRequest: TopicsV1ControllerGetTopicSubscriberRequest): string; /** @internal */ export declare const TopicsV1ControllerGetTopicSubscriberResponse$inboundSchema: z.ZodType; export declare function topicsV1ControllerGetTopicSubscriberResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicsv1controllergettopicsubscriber.d.ts.map