/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ExperienceContext } from './experienceContext.js'; /** Information needed to pay using eps. */ export interface EpsPaymentRequest { /** The full name representation like Mr J Smith. */ name: string; /** The [two-character ISO 3166-1 code](/api/rest/reference/country-codes/) that identifies the country or region. Note: The country code for Great Britain is GB and not UK as used in the top-level domain names for that country. Use the `C2` country code for China worldwide for comparable uncontrolled price (CUP) method, bank card, and cross-border transactions. */ countryCode: string; /** Customizes the payer experience during the approval process for the payment. */ experienceContext?: ExperienceContext; } export declare const epsPaymentRequestSchema: Schema; //# sourceMappingURL=epsPaymentRequest.d.ts.map