mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
* merge modifications service with checkout service and add cardDetails endpoint to checkout service * add classic integration/payment API types and service to library * add unit test for cardDetails endpoint * fix unit tests for binlookup * PW-6663: Do not run model generation on every PR * remove inconsistent e2e/unit hybrid test for binlookup Co-authored-by: Michael Paul <michael@michaelpaul.com.br>
42 lines
870 B
TypeScript
42 lines
870 B
TypeScript
/*
|
|
* The version of the OpenAPI document: v68
|
|
* 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 this class manually.
|
|
*/
|
|
|
|
import { CommonField } from './commonField';
|
|
import { ExternalPlatform } from './externalPlatform';
|
|
import { MerchantDevice } from './merchantDevice';
|
|
import { ShopperInteractionDevice } from './shopperInteractionDevice';
|
|
|
|
export class ApplicationInfo {
|
|
|
|
/**
|
|
*/
|
|
'adyenLibrary'?: CommonField;
|
|
|
|
/**
|
|
*/
|
|
'adyenPaymentSource'?: CommonField;
|
|
|
|
/**
|
|
*/
|
|
'externalPlatform'?: ExternalPlatform;
|
|
|
|
/**
|
|
*/
|
|
'merchantApplication'?: CommonField;
|
|
|
|
/**
|
|
*/
|
|
'merchantDevice'?: MerchantDevice;
|
|
|
|
/**
|
|
*/
|
|
'shopperInteractionDevice'?: ShopperInteractionDevice;
|
|
}
|
|
|