import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Subscription, Subscription$Outbound } from "./subscription.js"; /** * Sent when a customer revokes a pending cancellation. * * @remarks * * When a customer cancels with "at period end", they retain access until the * subscription would renew. During this time, they can change their mind and * undo the cancellation. This event is triggered when they do so. * * **Discord & Slack support:** Full */ export type WebhookSubscriptionUncanceledPayload = { type: "subscription.uncanceled"; timestamp: Date; data: Subscription; }; /** @internal */ export declare const WebhookSubscriptionUncanceledPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookSubscriptionUncanceledPayload$Outbound = { type: "subscription.uncanceled"; timestamp: string; data: Subscription$Outbound; }; /** @internal */ export declare const WebhookSubscriptionUncanceledPayload$outboundSchema: z.ZodMiniType; export declare function webhookSubscriptionUncanceledPayloadToJSON(webhookSubscriptionUncanceledPayload: WebhookSubscriptionUncanceledPayload): string; export declare function webhookSubscriptionUncanceledPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhooksubscriptionuncanceledpayload.d.ts.map