@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.
28 lines • 1.08 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { AllocationPreviewDirection } from './allocationPreviewDirection.js';
import { AllocationPreviewItem } from './allocationPreviewItem.js';
import { AllocationPreviewLineItem } from './allocationPreviewLineItem.js';
export interface AllocationPreview {
startDate?: string;
endDate?: string;
subtotalInCents?: bigint;
totalTaxInCents?: bigint;
totalDiscountInCents?: bigint;
totalInCents?: bigint;
direction?: AllocationPreviewDirection;
prorationScheme?: string;
lineItems?: AllocationPreviewLineItem[];
accrueCharge?: boolean;
allocations?: AllocationPreviewItem[];
periodType?: string;
/** An integer representing the amount of the subscription's current balance */
existingBalanceInCents?: bigint;
[key: string]: unknown;
}
export declare const allocationPreviewSchema: Schema<AllocationPreview>;
//# sourceMappingURL=allocationPreview.d.ts.map