@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.
29 lines • 996 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { LineItemKind } from './lineItemKind';
import { LineItemTransactionType } from './lineItemTransactionType';
export interface RenewalPreviewLineItem {
/** A handle for the line item transaction type */
transactionType?: LineItemTransactionType;
/** A handle for the line item kind */
kind?: LineItemKind;
amountInCents?: bigint;
memo?: string;
discountAmountInCents?: bigint;
taxableAmountInCents?: bigint;
productId?: number;
productName?: string;
componentId?: number;
componentHandle?: string;
componentName?: string;
productHandle?: string;
periodRangeStart?: string;
periodRangeEnd?: string;
[key: string]: unknown;
}
export declare const renewalPreviewLineItemSchema: Schema<RenewalPreviewLineItem>;
//# sourceMappingURL=renewalPreviewLineItem.d.ts.map