import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SubscriptionPreferenceDto } from "./subscriptionpreferencedto.js"; export type SubscriptionDetailsResponseDto = { /** * The unique identifier of the subscription */ id: string; /** * The identifier of the subscription */ identifier?: string | undefined; /** * The name of the subscription */ name?: string | undefined; /** * The preferences/rules for the subscription */ preferences?: Array | undefined; /** * Context keys that scope this subscription (e.g., tenant:org-a, project:proj-123) */ contextKeys?: Array | undefined; }; /** @internal */ export declare const SubscriptionDetailsResponseDto$inboundSchema: z.ZodType; export declare function subscriptionDetailsResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriptiondetailsresponsedto.d.ts.map