import { PaymentMeanEnum } from '../../billing/PaymentMeanEnum';
/** The payment infos linked to this debt entry */
export interface PaymentInfo {
    /** Optional customer description */
    description?: string;
    /** Payment mean used for this debt operation */
    paymentType: PaymentMeanEnum;
    /** Public payment mean label */
    publicLabel?: string;
}
//# sourceMappingURL=PaymentInfo.d.ts.map