/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ApplePayPaymentObject } from './applePayPaymentObject.js'; import { BancontactPaymentObject } from './bancontactPaymentObject.js'; import { BlikPaymentObject } from './blikPaymentObject.js'; import { CardResponse } from './cardResponse.js'; import { EpsPaymentObject } from './epsPaymentObject.js'; import { GiropayPaymentObject } from './giropayPaymentObject.js'; import { GooglePayWalletResponse } from './googlePayWalletResponse.js'; import { IdealPaymentObject } from './idealPaymentObject.js'; import { MybankPaymentObject } from './mybankPaymentObject.js'; import { P24PaymentObject } from './p24PaymentObject.js'; import { PaypalWalletResponse } from './paypalWalletResponse.js'; import { SofortPaymentObject } from './sofortPaymentObject.js'; import { TrustlyPaymentObject } from './trustlyPaymentObject.js'; import { VenmoWalletResponse } from './venmoWalletResponse.js'; /** The payment source used to fund the payment. */ export interface PaymentSourceResponse { /** The payment card to use to fund a payment. Card can be a credit or debit card. */ card?: CardResponse; /** The PayPal Wallet response. */ paypal?: PaypalWalletResponse; /** Information used to pay Bancontact. */ bancontact?: BancontactPaymentObject; /** Information used to pay using BLIK. */ blik?: BlikPaymentObject; /** Information used to pay using eps. */ eps?: EpsPaymentObject; /** Information needed to pay using giropay. */ giropay?: GiropayPaymentObject; /** Information used to pay using iDEAL. */ ideal?: IdealPaymentObject; /** Information used to pay using MyBank. */ mybank?: MybankPaymentObject; /** Information used to pay using P24(Przelewy24). */ p24?: P24PaymentObject; /** Information used to pay using Sofort. */ sofort?: SofortPaymentObject; /** Information needed to pay using Trustly. */ trustly?: TrustlyPaymentObject; /** Information needed to pay using ApplePay. */ applePay?: ApplePayPaymentObject; /** Google Pay Wallet payment data. */ googlePay?: GooglePayWalletResponse; /** Venmo wallet response. */ venmo?: VenmoWalletResponse; } export declare const paymentSourceResponseSchema: Schema; //# sourceMappingURL=paymentSourceResponse.d.ts.map