@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
60 lines (59 loc) • 2.39 kB
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.
*
* Adyen for Platforms: Notifications
* The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification. For more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).
*
* The version of the OpenAPI document: 6
* Contact: developer-experience@adyen.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ErrorFieldType } from './errorFieldType';
export declare class CloseAccountResponse {
/**
* The account code of the account that is closed.
*/
'accountCode'?: string;
/**
* Contains field validation errors that would prevent requests from being processed.
*/
'invalidFields'?: Array<ErrorFieldType>;
/**
* The reference of a request. Can be used to uniquely identify the request.
*/
'pspReference'?: string;
/**
* The result code.
*/
'resultCode'?: string;
/**
* The new status of the account. >Permitted values: `Active`, `Inactive`, `Suspended`, `Closed`.
*/
'status': CloseAccountResponse.StatusEnum;
}
export declare namespace CloseAccountResponse {
enum StatusEnum {
Active,
Closed,
Inactive,
Suspended
}
}