@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 850 B
TypeScript
import { RepaymentTerm } from "./repaymentTerm";
import { ThresholdRepayment } from "./thresholdRepayment";
export declare class Repayment {
/**
* The repayment that is deducted daily from incoming net volume, in [basis points](https://www.investopedia.com/terms/b/basispoint.asp).
*/
"basisPoints": number;
"term"?: RepaymentTerm | null;
"threshold"?: ThresholdRepayment | null;
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();
}