/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ApplePayPaymentToken } from './applePayPaymentToken.js'; import { CardPaymentTokenEntity } from './cardPaymentTokenEntity.js'; import { PaypalPaymentToken } from './paypalPaymentToken.js'; import { VenmoPaymentToken } from './venmoPaymentToken.js'; /** The vaulted payment method details. */ export interface PaymentTokenResponsePaymentSource { /** Full representation of a Card Payment Token including network token. */ card?: CardPaymentTokenEntity; /** Full representation of a PayPal Payment Token. */ paypal?: PaypalPaymentToken; /** Full representation of a Venmo Payment Token. */ venmo?: VenmoPaymentToken; /** A resource representing a response for Apple Pay. */ applePay?: ApplePayPaymentToken; } export declare const paymentTokenResponsePaymentSourceSchema: Schema; //# sourceMappingURL=paymentTokenResponsePaymentSource.d.ts.map