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