@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.
20 lines • 830 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { Price } from './price.js';
import { PricingScheme } from './pricingScheme.js';
/** Custom pricing for a component within a scheduled renewal. */
export interface ScheduledRenewalComponentCustomPrice {
/** Whether or not the price point includes tax */
taxIncluded?: boolean;
/** Omit for On/Off components */
pricingScheme: PricingScheme;
/** On/off components only need one price bracket starting at 1. */
prices: Price[];
[key: string]: unknown;
}
export declare const scheduledRenewalComponentCustomPriceSchema: Schema<ScheduledRenewalComponentCustomPrice>;
//# sourceMappingURL=scheduledRenewalComponentCustomPrice.d.ts.map