/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CardCustomerInformation } from './cardCustomerInformation.js'; import { LinkDescription } from './linkDescription.js'; import { VaultStatus } from './vaultStatus.js'; /** The details about a saved Card payment source. */ export interface CardVaultResponse { /** The PayPal-generated ID for the saved payment source. */ id?: string; /** The vault status. */ status?: VaultStatus; /** An array of request-related HATEOAS links. */ links?: LinkDescription[]; /** The details about a customer in PayPal's system of record. */ customer?: CardCustomerInformation; } export declare const cardVaultResponseSchema: Schema; //# sourceMappingURL=cardVaultResponse.d.ts.map