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.

16 lines 699 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CreateOrUpdateSegmentPriceUnitPrice } from './containers/createOrUpdateSegmentPriceUnitPrice.js'; export interface CreateOrUpdateSegmentPrice { startingQuantity?: number; endingQuantity?: number; /** The price can contain up to 8 decimal places. i.e. 1.00 or 0.0012 or 0.00000065 */ unitPrice: CreateOrUpdateSegmentPriceUnitPrice; [key: string]: unknown; } export declare const createOrUpdateSegmentPriceSchema: Schema<CreateOrUpdateSegmentPrice>; //# sourceMappingURL=createOrUpdateSegmentPrice.d.ts.map