PricesResponse
type PricesResponse = {
pro: {
billingCycle: "monthly" | "yearly";
prices: {
currency: string;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
unitAmount: number;
}[];
}[];
teams: {
billingCycle: "monthly" | "yearly";
prices: {
currency: string;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
unitAmount: number;
}[];
}[];
};
Available Pro and Teams prices.