/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Level2CardProcessingData } from './level2CardProcessingData.js'; import { Level3CardProcessingData } from './level3CardProcessingData.js'; /** Merchants and partners can add Level 2 and 3 data to payments to reduce risk and payment processing costs. For more information about processing payments, see checkout or multiparty checkout. */ export interface CardSupplementaryData { /** The level 2 card processing data collections. If your merchant account has been configured for Level 2 processing this field will be passed to the processor on your behalf. Please contact your PayPal Technical Account Manager to define level 2 data for your business. */ level2?: Level2CardProcessingData; /** The level 3 card processing data collections, If your merchant account has been configured for Level 3 processing this field will be passed to the processor on your behalf. Please contact your PayPal Technical Account Manager to define level 3 data for your business. */ level3?: Level3CardProcessingData; } export declare const cardSupplementaryDataSchema: Schema; //# sourceMappingURL=cardSupplementaryData.d.ts.map