@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.
25 lines • 978 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface CouponUsage {
/** The Chargify id of the product */
id?: number;
/** Name of the product */
name?: string;
/** Number of times the coupon has been applied */
signups?: number;
/** Dollar amount of customer savings as a result of the coupon. */
savings?: number | null;
/** Dollar amount of customer savings as a result of the coupon. */
savingsInCents?: bigint | null;
/** Total revenue of the all subscriptions that have received a discount from this coupon. */
revenue?: number | null;
/** Total revenue of the all subscriptions that have received a discount from this coupon. */
revenueInCents?: bigint;
[key: string]: unknown;
}
export declare const couponUsageSchema: Schema<CouponUsage>;
//# sourceMappingURL=couponUsage.d.ts.map