mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
63 lines
2.1 KiB
TypeScript
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;
|
|
}
|
|
}
|
|
|