Files
cfw-autumn/shared/models/attachModels/attachEnums/AttachConfig.ts
2025-06-03 08:07:41 +01:00

16 lines
370 B
TypeScript

import { AttachBranch } from "./AttachBranch.js";
export enum ProrationBehavior {
Immediately = "immediately",
NextBilling = "next_billing",
None = "none",
}
export interface AttachConfig {
onlyCheckout: boolean;
carryUsage: boolean; // Whether to carry over existing usages
branch: AttachBranch;
proration: ProrationBehavior;
disableTrial: boolean;
}