-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathaccountCapabilityData.ts
More file actions
108 lines (99 loc) · 3.66 KB
/
accountCapabilityData.ts
File metadata and controls
108 lines (99 loc) · 3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* The version of the OpenAPI document: v3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { CapabilityProblem } from "./capabilityProblem";
export 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 = undefined;
static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "allowed",
"baseName": "allowed",
"type": "boolean",
"format": ""
},
{
"name": "allowedLevel",
"baseName": "allowedLevel",
"type": "string",
"format": ""
},
{
"name": "capability",
"baseName": "capability",
"type": "string",
"format": ""
},
{
"name": "problems",
"baseName": "problems",
"type": "Array<CapabilityProblem>",
"format": ""
},
{
"name": "requested",
"baseName": "requested",
"type": "boolean",
"format": ""
},
{
"name": "requestedLevel",
"baseName": "requestedLevel",
"type": "string",
"format": ""
},
{
"name": "verificationDeadline",
"baseName": "verificationDeadline",
"type": "Date",
"format": "date-time"
},
{
"name": "verificationStatus",
"baseName": "verificationStatus",
"type": "string",
"format": ""
} ];
static getAttributeTypeMap() {
return AccountCapabilityData.attributeTypeMap;
}
public constructor() {
}
}