/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { ApplePayRequestCard } from './applePayRequestCard.js'; /** A resource representing a request to vault Apple Pay. */ export interface VaultApplePayRequest { /** Encrypted Apple Pay token, containing card information. This token would be base64 encoded. */ token?: string; /** The payment card to be used to fund a payment. Can be a credit or debit card. */ card?: ApplePayRequestCard; } export declare const vaultApplePayRequestSchema: Schema; //# sourceMappingURL=vaultApplePayRequest.d.ts.map