Files
adyen-node-api-library/src/typings/checkout/configuration.ts

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'
}
}