@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 828 B
TypeScript
export declare class PayoutScheduleExecutionDetails {
/**
* Human readable reason for why execution was not successful if applicable.
*/
"reason"?: string;
/**
* Reason Code for why execution was not successful if applicable.
*/
"reasonCode"?: string;
/**
* The id of the transfer from executing the payout.
*/
"transferId"?: string;
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();
}