mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
49 lines
1.8 KiB
TypeScript
49 lines
1.8 KiB
TypeScript
/*
|
|
* ######
|
|
* ######
|
|
* ############ ####( ###### #####. ###### ############ ############
|
|
* ############# #####( ###### #####. ###### ############# #############
|
|
* ###### #####( ###### #####. ###### ##### ###### ##### ######
|
|
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
|
|
* ###### ###### #####( ###### #####. ###### ##### ##### ######
|
|
* ############# ############# ############# ############# ##### ######
|
|
* ############ ############ ############# ############ ##### ######
|
|
* ######
|
|
* #############
|
|
* ############
|
|
* Adyen NodeJS API Library
|
|
* Copyright (c) 2022 Adyen B.V.
|
|
* This file is open source and available under the MIT license.
|
|
* See the LICENSE file for more info.
|
|
*
|
|
* Adyen Checkout API
|
|
*
|
|
* The version of the OpenAPI document: v69
|
|
* 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 { Avs } from './avs';
|
|
import { InstallmentsNumber } from './installmentsNumber';
|
|
import { ShopperInput } from './shopperInput';
|
|
|
|
export class Configuration {
|
|
'avs'?: Avs;
|
|
/**
|
|
* Determines whether the cardholder name should be provided or not. Permitted values: * NONE * OPTIONAL * REQUIRED
|
|
*/
|
|
'cardHolderName'?: Configuration.CardHolderNameEnum;
|
|
'installments'?: InstallmentsNumber;
|
|
'shopperInput'?: ShopperInput;
|
|
}
|
|
|
|
export namespace Configuration {
|
|
export enum CardHolderNameEnum {
|
|
NONE = <any> 'NONE',
|
|
OPTIONAL = <any> 'OPTIONAL',
|
|
REQUIRED = <any> 'REQUIRED'
|
|
}
|
|
}
|