/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CustomerInformation } from './customerInformation.js'; import { LinkDescription } from './linkDescription.js'; import { VenmoVaultResponseStatus } from './venmoVaultResponseStatus.js'; /** The details about a saved venmo payment source. */ export interface VenmoVaultResponse { /** The PayPal-generated ID for the saved payment source. */ id?: string; /** The vault status. */ status?: VenmoVaultResponseStatus; /** An array of request-related HATEOAS links. */ links?: LinkDescription[]; /** This object represents a merchant’s customer, allowing them to store contact details, and track all payments associated with the same customer. */ customer?: CustomerInformation; } export declare const venmoVaultResponseSchema: Schema; //# sourceMappingURL=venmoVaultResponse.d.ts.map