/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { VaultTokenRequestType } from './vaultTokenRequestType.js'; /** The Tokenized Payment Source representing a Request to Vault a Token. */ export interface VaultTokenRequest { /** The PayPal-generated ID for the token. */ id: string; /** The tokenization method that generated the ID. */ type: VaultTokenRequestType; } export declare const vaultTokenRequestSchema: Schema; //# sourceMappingURL=vaultTokenRequest.d.ts.map