/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { TokenType } from './tokenType.js'; /** The tokenized payment source to fund a payment. */ export interface Token { /** The PayPal-generated ID for the token. */ id: string; /** The tokenization method that generated the ID. */ type: TokenType; } export declare const tokenSchema: Schema; //# sourceMappingURL=token.d.ts.map