/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CustomerResponse } from './customerResponse.js'; import { LinkDescription } from './linkDescription.js'; import { PaymentTokenResponsePaymentSource } from './paymentTokenResponsePaymentSource.js'; /** Full representation of a saved payment token. */ export interface PaymentTokenResponse { /** The PayPal-generated ID for the vaulted payment source. This ID should be stored on the merchant's server so the saved payment source can be used for future transactions. */ id?: string; /** Customer in merchant's or partner's system of records. */ customer?: CustomerResponse; /** The vaulted payment method details. */ paymentSource?: PaymentTokenResponsePaymentSource; /** An array of related [HATEOAS links](/api/rest/responses/#hateoas). */ links?: LinkDescription[]; } export declare const paymentTokenResponseSchema: Schema; //# sourceMappingURL=paymentTokenResponse.d.ts.map