@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.
23 lines • 1.25 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { IntervalUnit } from './intervalUnit';
import { Price } from './price';
import { PricingScheme } from './pricingScheme';
export interface ComponentPricePointItem {
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;
/** The numerical interval. i.e. an interval of ‘30’ coupled with an interval_unit of day would mean this component price point would renew every 30 days. This property is only available for sites with Multifrequency enabled. */
interval?: number;
/** A string representing the interval unit for this component price point, either month or day. This property is only available for sites with Multifrequency enabled. */
intervalUnit?: IntervalUnit | null;
prices?: Price[];
[key: string]: unknown;
}
export declare const componentPricePointItemSchema: Schema<ComponentPricePointItem>;
//# sourceMappingURL=componentPricePointItem.d.ts.map