UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

79 lines (78 loc) 3.23 kB
/** * ###### * ###### * ############ ####( ###### #####. ###### ############ ############ * ############# #####( ###### #####. ###### ############# ############# * ###### #####( ###### #####. ###### ##### ###### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ##### ###### * ###### ###### #####( ###### #####. ###### ##### ##### ###### * ############# ############# ############# ############# ##### ###### * ############ ############ ############# ############ ##### ###### * ###### * ############# * ############ * 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'; import { PayoutScheduleResponse } from './payoutScheduleResponse'; export declare class UpdateAccountResponse { /** * The code of the account. */ 'accountCode': string; /** * The bankAccountUUID of the bank account held by the account holder to couple the account with. Scheduled payouts in currencies matching the currency of this bank account will be sent to this bank account. Payouts in different currencies will be sent to a matching bank account of the account holder. */ 'bankAccountUUID'?: string; /** * The description of the account. */ 'description'?: string; /** * A list of fields that caused the `/updateAccount` request to fail. */ 'invalidFields'?: Array<ErrorFieldType>; /** * A set of key and value pairs containing metadata. */ 'metadata'?: { [key: string]: string; }; /** * The payout method code held by the account holder to couple the account with. Scheduled card payouts will be sent using this payout method code. */ 'payoutMethodCode'?: string; 'payoutSchedule'?: PayoutScheduleResponse; /** * Speed with which payouts for this account are processed. Permitted values: `STANDARD`, `SAME_DAY`. */ 'payoutSpeed'?: UpdateAccountResponse.PayoutSpeedEnum; /** * The reference of a request. Can be used to uniquely identify the request. */ 'pspReference'?: string; /** * The result code. */ 'resultCode'?: string; } export declare namespace UpdateAccountResponse { enum PayoutSpeedEnum { Instant, SameDay, Standard } }