/** * 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 { VaultCustomer } from './vaultCustomer.js'; import { VaultStatus } from './vaultStatus.js'; /** The details about a saved payment source. */ export interface VaultResponse { /** The PayPal-generated ID for the saved payment source. */ id?: string; /** The vault status. */ status?: VaultStatus; /** This object represents a merchant’s customer, allowing them to store contact details, and track all payments associated with the same customer. */ customer?: VaultCustomer; /** An array of request-related HATEOAS links. */ links?: LinkDescription[]; } export declare const vaultResponseSchema: Schema; //# sourceMappingURL=vaultResponse.d.ts.map