/** * Types of payment: * - Payment (default) = positive amount or zero * - Refund = negative amount * - Chargeback = negative amount due to reversed payment * - Reallocation = zero payment due to automatic reallocation (pay an amount of an open balance using a negative or canceled balance) */ export declare enum PaymentType { /** * payment for some items - positive amount or zero * can contain both positive and negative items */ Payment = "Payment", /** * negative amount to refund earlier items * -> created by the creditor * can only contain negative items */ Refund = "Refund", /** * negative amount due to reversed payment * -> created by the debtor without permission of the creditor * can only contain negative items */ Chargeback = "Chargeback", /** * funds are automatically moved to offset balances without any net change in the overall payment amount * Contains both negative and positive items */ Reallocation = "Reallocation" } export declare class PaymentTypeHelper { static getName(type: PaymentType): string; static getDescription(type: PaymentType): string; static getIcon(type: PaymentType): string; } //# sourceMappingURL=PaymentType.d.ts.map