export type price_CreatePriceInput = { /** * Amount is the price amount in the currency's smallest unit (e.g. cents). */ amount: number; /** * Currency is the ISO currency code. */ currency?: string; /** * Interval is the billing period for recurring prices. */ interval?: price_CreatePriceInput.interval; /** * IntervalCount is the number of intervals between billings. */ intervalCount?: number; /** * ProductId is the product this price belongs to. */ productId: string; /** * Type is whether the price is one-time or recurring. */ type?: price_CreatePriceInput.type; }; export declare namespace price_CreatePriceInput { /** * Interval is the billing period for recurring prices. */ enum interval { DAY = "day", WEEK = "week", MONTH = "month", QUARTERLY = "quarterly", BIANNUALLY = "biannually", YEAR = "year", SEMIANNUALLY = "semiannually" } /** * Type is whether the price is one-time or recurring. */ enum type { ONE_TIME = "oneTime", RECURRING = "recurring" } }