@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.
15 lines • 908 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { ReactivationCharge } from './reactivationCharge';
/** These values are only applicable to subscriptions using calendar billing */
export interface ReactivationBilling {
/** You may choose how to handle the reactivation charge for that subscription: 1) `prorated` A prorated charge for the product price will be attempted for to complete the period 2) `immediate` A full-price charge for the product price will be attempted immediately 3) `delayed` A full-price charge for the product price will be attempted at the next renewal */
reactivationCharge?: ReactivationCharge;
[key: string]: unknown;
}
export declare const reactivationBillingSchema: Schema<ReactivationBilling>;
//# sourceMappingURL=reactivationBilling.d.ts.map