@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
31 lines • 1.94 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { ExpirationIntervalUnit } from './expirationIntervalUnit';
import { OveragePricing } from './overagePricing';
import { Price } from './price';
import { PricingScheme } from './pricingScheme';
export interface CreatePrepaidUsageComponentPricePoint {
name: string;
handle?: string;
/** The identifier for the pricing scheme. See [Product Components](https://help.chargify.com/products/product-components.html) for an overview of pricing schemes. */
pricingScheme: PricingScheme;
prices: Price[];
overagePricing: OveragePricing;
/** Whether to use the site level exchange rate or define your own prices for each currency if you have multiple currencies defined on the site. */
useSiteExchangeRate?: boolean;
/** (only for prepaid usage components) Boolean which controls whether or not remaining units should be rolled over to the next period */
rolloverPrepaidRemainder?: boolean;
/** (only for prepaid usage components) Boolean which controls whether or not the allocated quantity should be renewed at the beginning of each period */
renewPrepaidAllocation?: boolean;
/** (only for prepaid usage components where rollover_prepaid_remainder is true) The number of `expiration_interval_unit`s after which rollover amounts should expire */
expirationInterval?: number;
/** (only for prepaid usage components where rollover_prepaid_remainder is true) A string representing the expiration interval unit for this component, either month or day */
expirationIntervalUnit?: ExpirationIntervalUnit | null;
[key: string]: unknown;
}
export declare const createPrepaidUsageComponentPricePointSchema: Schema<CreatePrepaidUsageComponentPricePoint>;
//# sourceMappingURL=createPrepaidUsageComponentPricePoint.d.ts.map