/**
 * 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