PriceListing
type PriceListing = {
billingCycle: "monthly" | "yearly";
prices: {
currency: string;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
unitAmount: number;
}[];
};
Prices available for a given billing cycle.
Type Declaration
| Name | Type |
|---|---|
billingCycle | "monthly" | "yearly" |
prices | { currency: string; taxBehavior: "inclusive" | "exclusive" | "unspecified"; unitAmount: number; }[] |