/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
/** Example schema for an `apply_debit_note` event */
export interface ApplyDebitNoteEventData {
    /** A unique, identifying string that appears on the debit note and in places it is referenced. */
    debitNoteNumber: string;
    /** Unique identifier for the debit note. It is generated automatically by Chargify and has the prefix "db_" followed by alphanumeric characters. */
    debitNoteUid: string;
    /** The full, original amount of the debit note. */
    originalAmount: string;
    /** The amount of the debit note applied to invoice. */
    appliedAmount: string;
    /** The debit note memo. */
    memo?: string | null;
    /** The time the debit note was applied, in ISO 8601 format, i.e. "2019-06-07T17:20:06Z" */
    transactionTime?: string | null;
    [key: string]: unknown;
}
export declare const applyDebitNoteEventDataSchema: Schema<ApplyDebitNoteEventData>;
//# sourceMappingURL=applyDebitNoteEventData.d.ts.map