import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TopicSubscriptionResponseDto } from "./topicsubscriptionresponsedto.js"; export type ListTopicSubscriptionsResponseDto = { /** * List of returned Topic Subscriptions */ data: Array; /** * The cursor for the next page of results, or null if there are no more pages. */ next: string | null; /** * The cursor for the previous page of results, or null if this is the first page. */ previous: string | null; /** * The total count of items (up to 50,000) */ totalCount: number; /** * Whether there are more than 50,000 results available */ totalCountCapped: boolean; }; /** @internal */ export declare const ListTopicSubscriptionsResponseDto$inboundSchema: z.ZodType; export declare function listTopicSubscriptionsResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtopicsubscriptionsresponsedto.d.ts.map