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 724 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; /** Optional for Event Based Components. If the `include=historic_usages` query param is provided, the last ten billing periods will be returned. */ export interface HistoricUsage { /** Total usage of a component for billing period */ totalUsageQuantity?: number; /** Start date of billing period */ billingPeriodStartsAt?: string; /** End date of billing period */ billingPeriodEndsAt?: string; [key: string]: unknown; } export declare const historicUsageSchema: Schema<HistoricUsage>; //# sourceMappingURL=historicUsage.d.ts.map