@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
35 lines (34 loc) • 1.13 kB
TypeScript
import { OriginalPOITransaction } from "./originalPOITransaction";
import { ReversalReason } from "./reversalReason";
import { SaleData } from "./saleData";
/**
* It conveys Information related to the reversal of a previous payment or a loyalty transaction. Content of the Reversal Request message.
*/
export declare class ReversalRequest {
"SaleData"?: SaleData | null;
"OriginalPOITransaction": OriginalPOITransaction;
/**
* Amount of the payment or loyalty to reverse. ReversedAmount is implicitly equal to the AuthorizedAmount if absent.
*/
"ReversedAmount"?: number;
"ReversalReason": ReversalReason;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}
export declare namespace ReversalRequest {
}