import * as z from "zod/v4-mini"; export type SubscriptionUpdateBillingPeriod = { /** * Set a new date for the end of the current billing period. The subscription will renew on this date. The new date can be earlier or later than the current period end, as long as it's in the future. * * @remarks * * It is not possible to update the current billing period on a canceled subscription. */ currentBillingPeriodEnd: Date; }; /** @internal */ export type SubscriptionUpdateBillingPeriod$Outbound = { current_billing_period_end: string; }; /** @internal */ export declare const SubscriptionUpdateBillingPeriod$outboundSchema: z.ZodMiniType; export declare function subscriptionUpdateBillingPeriodToJSON(subscriptionUpdateBillingPeriod: SubscriptionUpdateBillingPeriod): string; //# sourceMappingURL=subscriptionupdatebillingperiod.d.ts.map