@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
35 lines (34 loc) • 1.07 kB
TypeScript
export declare class TransferReview {
/**
* Shows the number of [approvals](https://docs.adyen.com/api-explorer/transfers/latest/post/transfers/approve) required to process the transfer.
*/
"numberOfApprovalsRequired"?: number;
/**
* Shows the status of the Strong Customer Authentication (SCA) process. Possible values: **required**, **notApplicable**.
*/
"scaOnApproval"?: TransferReview.ScaOnApprovalEnum;
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 TransferReview {
enum ScaOnApprovalEnum {
Completed = "completed",
NotApplicable = "notApplicable",
Required = "required"
}
}