mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
118 lines
4.2 KiB
TypeScript
118 lines
4.2 KiB
TypeScript
/*
|
|
* The version of the OpenAPI document: v2
|
|
* Contact: developer-experience@adyen.com
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit this class manually.
|
|
*/
|
|
|
|
import { JSONObject } from './jSONObject';
|
|
|
|
export class AccountHolderCapability {
|
|
/**
|
|
* Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful and the account holder is permitted to use the capability.
|
|
*/
|
|
'allowed'?: boolean;
|
|
/**
|
|
* The capability level that is allowed for the account holder. Possible values: **notApplicable**, **low**, **medium**, **high**.
|
|
*/
|
|
'allowedLevel'?: AccountHolderCapability.AllowedLevelEnum;
|
|
'allowedSettings'?: JSONObject;
|
|
/**
|
|
* Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
|
|
*/
|
|
'enabled'?: boolean;
|
|
/**
|
|
* Contains verification errors and the actions that you can take to resolve them.
|
|
*/
|
|
'problems'?: Array<any>;
|
|
/**
|
|
* Indicates whether the capability is requested. To check whether the account holder is permitted to use the capability, refer to the `allowed` field.
|
|
*/
|
|
'requested'?: boolean;
|
|
/**
|
|
* The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
|
|
*/
|
|
'requestedLevel'?: AccountHolderCapability.RequestedLevelEnum;
|
|
'requestedSettings'?: JSONObject;
|
|
/**
|
|
* 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 has been successfully completed. * **rejected**: Adyen has verified the information, but found reasons to not allow the capability.
|
|
*/
|
|
'verificationStatus'?: AccountHolderCapability.VerificationStatusEnum;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "allowed",
|
|
"baseName": "allowed",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "allowedLevel",
|
|
"baseName": "allowedLevel",
|
|
"type": "AccountHolderCapability.AllowedLevelEnum"
|
|
},
|
|
{
|
|
"name": "allowedSettings",
|
|
"baseName": "allowedSettings",
|
|
"type": "JSONObject"
|
|
},
|
|
{
|
|
"name": "enabled",
|
|
"baseName": "enabled",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "problems",
|
|
"baseName": "problems",
|
|
"type": "Array<any>"
|
|
},
|
|
{
|
|
"name": "requested",
|
|
"baseName": "requested",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "requestedLevel",
|
|
"baseName": "requestedLevel",
|
|
"type": "AccountHolderCapability.RequestedLevelEnum"
|
|
},
|
|
{
|
|
"name": "requestedSettings",
|
|
"baseName": "requestedSettings",
|
|
"type": "JSONObject"
|
|
},
|
|
{
|
|
"name": "verificationStatus",
|
|
"baseName": "verificationStatus",
|
|
"type": "AccountHolderCapability.VerificationStatusEnum"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return AccountHolderCapability.attributeTypeMap;
|
|
}
|
|
}
|
|
|
|
export namespace AccountHolderCapability {
|
|
export enum AllowedLevelEnum {
|
|
High = <any> 'high',
|
|
Low = <any> 'low',
|
|
Medium = <any> 'medium',
|
|
NotApplicable = <any> 'notApplicable'
|
|
}
|
|
export enum RequestedLevelEnum {
|
|
High = <any> 'high',
|
|
Low = <any> 'low',
|
|
Medium = <any> 'medium',
|
|
NotApplicable = <any> 'notApplicable'
|
|
}
|
|
export enum VerificationStatusEnum {
|
|
Invalid = <any> 'invalid',
|
|
Pending = <any> 'pending',
|
|
Rejected = <any> 'rejected',
|
|
Valid = <any> 'valid'
|
|
}
|
|
}
|