UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

53 lines (52 loc) 2.33 kB
import { CapabilityProblem } from "./capabilityProblem"; export declare class AccountCapabilityData { /** * Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful. */ "allowed"?: boolean; /** * The allowed level of the capability. Some capabilities have different levels which correspond to thresholds. Higher levels may require additional checks and increased monitoring.Possible values: **notApplicable**, **low**, **medium**, **high**. */ "allowedLevel"?: string; /** * The name of the capability. For example, **sendToTransferInstrument**. */ "capability"?: string; /** * List of entities that have problems with verification. The information includes the details of the errors and the actions that you can take to resolve them. */ "problems"?: Array<CapabilityProblem>; /** * Indicates whether you requested the capability. */ "requested": boolean; /** * The level that you requested for the capability. Some capabilities have different levels which correspond to thresholds. Higher levels may require additional checks and increased monitoring.Possible values: **notApplicable**, **low**, **medium**, **high**. */ "requestedLevel": string; /** * The verification deadline for the capability that will be disallowed if verification errors are not resolved. */ "verificationDeadline"?: Date; /** * The status of the verification checks for the capability. Possible values: * **pending**: Adyen is running the verification. * **invalid**: The verification failed. Check if the `errors` array contains more information. * **valid**: The verification was successful. * **rejected**: Adyen checked the information and found reasons to not allow the capability. */ "verificationStatus"?: 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(); }