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.

18 lines 769 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { expandoObject, lazy, nullable, optional } from '../schema.js'; import { priceEndingQuantitySchema, } from './containers/priceEndingQuantity.js'; import { priceStartingQuantitySchema, } from './containers/priceStartingQuantity.js'; import { priceUnitPriceSchema, } from './containers/priceUnitPrice.js'; export const priceSchema = lazy(() => expandoObject({ startingQuantity: ['starting_quantity', priceStartingQuantitySchema], endingQuantity: [ 'ending_quantity', optional(nullable(priceEndingQuantitySchema)), ], unitPrice: ['unit_price', priceUnitPriceSchema], })); //# sourceMappingURL=price.js.map