BillingPlanPrice
type BillingPlanPrice = {
amount: string;
billingCycle: "monthly" | "yearly" | null;
currency: string;
rawAmount: number;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
};
Price of an active plan.
Type Declaration
| Name | Type |
|---|---|
amount | string |
billingCycle | "monthly" | "yearly" | null |
currency | string |
rawAmount | number |
taxBehavior | "inclusive" | "exclusive" | "unspecified" |