import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { BillingCadence } from "./billing-cadence.js"; import { BillingPeriod } from "./billing-period.js"; import { PauseStatus } from "./pause-status.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionStatus } from "./subscription-status.js"; import { SubscriptionType } from "./subscription-type.js"; import { WebhookDtoCustomer } from "./webhook-dto-customer.js"; export type WebhookDtoSubscription = { billingCadence?: BillingCadence | undefined; billingPeriod?: BillingPeriod | undefined; billingPeriodCount?: number | undefined; cancelAt?: Date | undefined; cancelAtPeriodEnd?: boolean | undefined; cancelledAt?: Date | undefined; currency?: string | undefined; currentPeriodEnd?: Date | undefined; currentPeriodStart?: Date | undefined; customer?: WebhookDtoCustomer | undefined; customerId?: string | undefined; endDate?: Date | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; parentSubscriptionId?: string | undefined; pauseStatus?: PauseStatus | undefined; planId?: string | undefined; startDate?: Date | undefined; subscriptionStatus?: SubscriptionStatus | undefined; subscriptionType?: SubscriptionType | undefined; trialEnd?: Date | undefined; trialStart?: Date | undefined; }; /** @internal */ export declare const WebhookDtoSubscription$inboundSchema: z.ZodMiniType; export declare function webhookDtoSubscriptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-subscription.d.ts.map