/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { LinkDescription } from './linkDescription.js'; import { PaymentTokenResponse } from './paymentTokenResponse.js'; import { VaultResponseCustomer } from './vaultResponseCustomer.js'; /** Collection of payment tokens saved for a given customer. */ export interface CustomerVaultPaymentTokensResponse { /** Total number of items. */ totalItems?: number; /** Total number of pages. */ totalPages?: number; /** This object defines a customer in your system. Use it to manage customer profiles, save payment methods and contact details. */ customer?: VaultResponseCustomer; paymentTokens?: PaymentTokenResponse[]; /** An array of related [HATEOAS links](/api/rest/responses/#hateoas). */ links?: LinkDescription[]; } export declare const customerVaultPaymentTokensResponseSchema: Schema; //# sourceMappingURL=customerVaultPaymentTokensResponse.d.ts.map