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 TopicsControllerGetTopicSubscriptionRequest = { /** * The key identifier of the topic */ topicKey: string; /** * The unique identifier of the subscription */ identifier: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type TopicsControllerGetTopicSubscriptionResponse = { headers: { [k: string]: Array; }; result: components.SubscriptionDetailsResponseDto; }; /** @internal */ export type TopicsControllerGetTopicSubscriptionRequest$Outbound = { topicKey: string; identifier: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const TopicsControllerGetTopicSubscriptionRequest$outboundSchema: z.ZodType; export declare function topicsControllerGetTopicSubscriptionRequestToJSON(topicsControllerGetTopicSubscriptionRequest: TopicsControllerGetTopicSubscriptionRequest): string; /** @internal */ export declare const TopicsControllerGetTopicSubscriptionResponse$inboundSchema: z.ZodType; export declare function topicsControllerGetTopicSubscriptionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicscontrollergettopicsubscription.d.ts.map