/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Customer } from './customer.js'; import { PaymentTokenRequestPaymentSource } from './paymentTokenRequestPaymentSource.js'; /** Payment Token Request where the `source` defines the type of instrument to be stored. */ export interface PaymentTokenRequest { /** This object defines a customer in your system. Use it to manage customer profiles, save payment methods and contact details. */ customer?: Customer; /** The payment method to vault with the instrument details. */ paymentSource: PaymentTokenRequestPaymentSource; } export declare const paymentTokenRequestSchema: Schema; //# sourceMappingURL=paymentTokenRequest.d.ts.map