Files
adyen-node-api-library/src/typings/notification/notification.ts
Wouter Boereboom e4de89f4bc Pw 5326/update notification models (#751)
* updated notification types & fixed eslint updates

* updated lockfile
2021-09-27 14:36:28 +02:00

63 lines
2.1 KiB
TypeScript

/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* 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;
}
}