@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
79 lines (78 loc) • 3.18 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 { AccountHolderDetails } from './accountHolderDetails';
import { AccountHolderStatus } from './accountHolderStatus';
import { ErrorFieldType } from './errorFieldType';
import { KYCVerificationResult2 } from './kYCVerificationResult2';
export declare class UpdateAccountHolderResponse {
/**
* The code of the account holder.
*/
'accountHolderCode'?: string;
'accountHolderDetails'?: AccountHolderDetails;
'accountHolderStatus': AccountHolderStatus;
/**
* The description of the account holder.
*/
'description'?: string;
/**
* in case the account holder has not been updated, contains account holder fields, that did not pass the validation.
*/
'invalidFields'?: Array<ErrorFieldType>;
/**
* The legal entity of the account holder.
*/
'legalEntity': UpdateAccountHolderResponse.LegalEntityEnum;
/**
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes), with which the prospective account holder primarily deals.
*/
'primaryCurrency'?: string;
/**
* The reference of a request. Can be used to uniquely identify the request.
*/
'pspReference'?: string;
/**
* The result code.
*/
'resultCode'?: string;
'verification': KYCVerificationResult2;
/**
* The identifier of the profile that applies to this entity.
*/
'verificationProfile'?: string;
}
export declare namespace UpdateAccountHolderResponse {
enum LegalEntityEnum {
Business,
Individual,
NonProfit,
Partnership,
PublicCompany
}
}