-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathnotification.ts
62 lines (55 loc) · 2.09 KB
/
notification.ts
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
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2021 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
/**
* Notification API
* Definition of Notification API Schema
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { NotificationItem } from './notificationItem';
export class Notification {
/**
* Informs about the origin of the notification: - true: the notification originated from the live environment. - false: the notification originated from the test environment.
*/
'live': string;
/**
* A container object for the details included in the notification.
*/
'notificationItems': Array<NotificationItem>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "live",
"baseName": "live",
"type": "string"
},
{
"name": "notificationItems",
"baseName": "notificationItems",
"type": "Array<NotificationItem>"
} ];
static getAttributeTypeMap() {
return Notification.attributeTypeMap;
}
}