import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscriptionCanceledMetadata = { subscriptionId: string; productId?: string | undefined; amount: number; currency: string; recurringInterval: string; recurringIntervalCount: number; customerCancellationReason?: string | undefined; customerCancellationComment?: string | undefined; canceledAt: string; endsAt?: string | undefined; cancelAtPeriodEnd?: boolean | undefined; }; /** @internal */ export declare const SubscriptionCanceledMetadata$inboundSchema: z.ZodMiniType; export declare function subscriptionCanceledMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriptioncanceledmetadata.d.ts.map