import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionScheduleResponse } from "./subscription-schedule-response.js"; /** * List of pending schedules for a subscription */ export type GetPendingSchedulesResponse = { /** * count is the number of pending schedules */ count?: number | undefined; /** * schedules is the list of pending schedules */ schedules?: Array | undefined; }; /** @internal */ export declare const GetPendingSchedulesResponse$inboundSchema: z.ZodMiniType; export declare function getPendingSchedulesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-pending-schedules-response.d.ts.map