-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathrelayedAuthorisationRequest.ts
More file actions
266 lines (257 loc) · 7.79 KB
/
relayedAuthorisationRequest.ts
File metadata and controls
266 lines (257 loc) · 7.79 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
* The version of the OpenAPI document: v4
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { Amount } from "./amount";
import { AmountAdjustment } from "./amountAdjustment";
import { AuthorisationDecisionRequest } from "./authorisationDecisionRequest";
import { BalanceMutation } from "./balanceMutation";
import { MerchantData } from "./merchantData";
import { PaymentInstrument } from "./paymentInstrument";
import { ResourceReference } from "./resourceReference";
import { ThreeDSecure } from "./threeDSecure";
import { TransactionRulesResult } from "./transactionRulesResult";
import { TransactionScoring } from "./transactionScoring";
import { ValidationResult } from "./validationResult";
export class RelayedAuthorisationRequest {
"accountHolder"?: ResourceReference | null;
"amount"?: Amount | null;
/**
* The amount adjustments in the transaction.
*/
"amountAdjustments"?: Array<AmountAdjustment>;
/**
* The authorization code for the payment.
*/
"authCode"?: string;
"authorisationDecision"?: AuthorisationDecisionRequest | null;
/**
* The authorization type. Possible values: * **finalAuthorisation** * **preAuthorisation** * **defaultAuthorisation**
*/
"authorisationType"?: string;
"balanceAccount"?: ResourceReference | null;
/**
* The list of balance mutations per event.
*/
"balanceMutations"?: Array<BalanceMutation>;
/**
* The unique identifier of the balance platform.
*/
"balancePlatform"?: string;
/**
* The entry mode of the information of the payment instrument. For example: **contactless**, **chip**, **magstripe**.
*/
"entryMode"?: string;
/**
* The environment from which the webhook originated. Possible values: **test**, **live**.
*/
"environment"?: string;
/**
* The unique identifier of the transfer.
*/
"id"?: string;
"merchantData"?: MerchantData | null;
"originalAmount"?: Amount | null;
"paymentInstrument"?: PaymentInstrument | null;
/**
* The processing type used for this payment. For example: **ecommerce**, **pos**, **moto**.
*/
"processingType"?: string;
/**
* The reference of the payment.
*/
"reference"?: string;
/**
* The risk score provided by the card schemes.
*/
"schemeRiskScore"?: number;
/**
* The identifier of the original payment. This ID is provided by the scheme and can be alphanumeric or numeric, depending on the scheme.
*/
"schemeTraceId"?: string;
/**
* The unique identifier created by the scheme. This ID can be alphanumeric or numeric depending on the scheme.
*/
"schemeUniqueTransactionId"?: string;
/**
* The list of transaction scores.
*/
"scores"?: Array<TransactionScoring>;
"threeDSecure"?: ThreeDSecure | null;
"transactionRulesResult"?: TransactionRulesResult | null;
/**
* Type of notification.
*/
"type"?: RelayedAuthorisationRequest.TypeEnum;
/**
* Contains the checks that Adyen performed to validate the payment and the result of each.
*/
"validationResult"?: Array<ValidationResult>;
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": "accountHolder",
"baseName": "accountHolder",
"type": "ResourceReference | null",
"format": ""
},
{
"name": "amount",
"baseName": "amount",
"type": "Amount | null",
"format": ""
},
{
"name": "amountAdjustments",
"baseName": "amountAdjustments",
"type": "Array<AmountAdjustment>",
"format": ""
},
{
"name": "authCode",
"baseName": "authCode",
"type": "string",
"format": ""
},
{
"name": "authorisationDecision",
"baseName": "authorisationDecision",
"type": "AuthorisationDecisionRequest | null",
"format": ""
},
{
"name": "authorisationType",
"baseName": "authorisationType",
"type": "string",
"format": ""
},
{
"name": "balanceAccount",
"baseName": "balanceAccount",
"type": "ResourceReference | null",
"format": ""
},
{
"name": "balanceMutations",
"baseName": "balanceMutations",
"type": "Array<BalanceMutation>",
"format": ""
},
{
"name": "balancePlatform",
"baseName": "balancePlatform",
"type": "string",
"format": ""
},
{
"name": "entryMode",
"baseName": "entryMode",
"type": "string",
"format": ""
},
{
"name": "environment",
"baseName": "environment",
"type": "string",
"format": ""
},
{
"name": "id",
"baseName": "id",
"type": "string",
"format": ""
},
{
"name": "merchantData",
"baseName": "merchantData",
"type": "MerchantData | null",
"format": ""
},
{
"name": "originalAmount",
"baseName": "originalAmount",
"type": "Amount | null",
"format": ""
},
{
"name": "paymentInstrument",
"baseName": "paymentInstrument",
"type": "PaymentInstrument | null",
"format": ""
},
{
"name": "processingType",
"baseName": "processingType",
"type": "string",
"format": ""
},
{
"name": "reference",
"baseName": "reference",
"type": "string",
"format": ""
},
{
"name": "schemeRiskScore",
"baseName": "schemeRiskScore",
"type": "number",
"format": "int32"
},
{
"name": "schemeTraceId",
"baseName": "schemeTraceId",
"type": "string",
"format": ""
},
{
"name": "schemeUniqueTransactionId",
"baseName": "schemeUniqueTransactionId",
"type": "string",
"format": ""
},
{
"name": "scores",
"baseName": "scores",
"type": "Array<TransactionScoring>",
"format": ""
},
{
"name": "threeDSecure",
"baseName": "threeDSecure",
"type": "ThreeDSecure | null",
"format": ""
},
{
"name": "transactionRulesResult",
"baseName": "transactionRulesResult",
"type": "TransactionRulesResult | null",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "RelayedAuthorisationRequest.TypeEnum",
"format": ""
},
{
"name": "validationResult",
"baseName": "validationResult",
"type": "Array<ValidationResult>",
"format": ""
} ];
static getAttributeTypeMap() {
return RelayedAuthorisationRequest.attributeTypeMap;
}
public constructor() {
}
}
export namespace RelayedAuthorisationRequest {
export enum TypeEnum {
BalancePlatformAuthorisationRelayed = 'balancePlatform.authorisation.relayed'
}
}