FormattedPrice
type FormattedPrice = {
currency: string;
taxBehavior: "inclusive" | "exclusive" | "unspecified";
unitAmount: number;
};
A single price within a billing-cycle listing.
Type Declaration
| Name | Type |
|---|---|
currency | string |
taxBehavior | "inclusive" | "exclusive" | "unspecified" |
unitAmount | number |