Skip to main content

PriceListing

type PriceListing = {
billingCycle: "monthly" | "yearly";
prices: {
currency: string;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
unitAmount: number;
}[];
};

Prices available for a given billing cycle.

Type Declaration

NameType
billingCycle"monthly" | "yearly"
prices{ currency: string; taxBehavior: "inclusive" | "exclusive" | "unspecified"; unitAmount: number; }[]