Skip to main content

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.

Type Declaration

NameType
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; }[]; }[]