UNPKG

@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 841 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { UpdatePriceEndingQuantity } from './containers/updatePriceEndingQuantity'; import { UpdatePriceStartingQuantity } from './containers/updatePriceStartingQuantity'; import { UpdatePriceUnitPrice } from './containers/updatePriceUnitPrice'; export interface UpdatePrice { id?: number; endingQuantity?: UpdatePriceEndingQuantity; /** The price can contain up to 8 decimal places. i.e. 1.00 or 0.0012 or 0.00000065 */ unitPrice?: UpdatePriceUnitPrice; destroy?: boolean; startingQuantity?: UpdatePriceStartingQuantity; [key: string]: unknown; } export declare const updatePriceSchema: Schema<UpdatePrice>; //# sourceMappingURL=updatePrice.d.ts.map