@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
22 lines (21 loc) • 682 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 discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}